Search the FirstSpirit Knowledge Base
Ich habe folgendes Konstrukt, wehles ich für FS5 nicht mehr verwenden kann, da CMS_INCLUDE_CONTENT nicht mehr unterstützt wird.
<CMS_INPUT_COMBOBOX name="st_application" useLanguages="no">
<CMS_INCLUDE_CONTENT type="entries" table="FS_DATA.tabellenname">
<LABEL lang="*">#row.name</LABEL>
</CMS_INCLUDE_CONTENT>
<LANGINFOS>
<LANGINFO lang="*" label="Application" description="Application name"/>
<LANGINFO lang="DE" label="Applikation" description="Name der Applikation"/>
</LANGINFOS>
</CMS_INPUT_COMBOBOX>
Welche Möglichkeit habe ich eine COMBOBOX mit einem Tabellen Inhalt zubefühlen?
Hallo,
ich benutze folgende Umsetzung:
<CMS_INPUT_COMBOBOX name="pt_scProd" useLanguages="no">
<CMS_INCLUDE_OPTIONS type="database">
<LABELS>
<LABEL lang="*">#item.Prod</LABEL>
</LABELS>
<TABLE>b.scprodcat</TABLE>
</CMS_INCLUDE_OPTIONS>
<LANGINFOS>
<LANGINFO lang="*" label="Produkt für SC" description="wichtig für SC"/>
</LANGINFOS>
</CMS_INPUT_COMBOBOX>
also statt include_content >> include_options
So weit ich die Docu verstanden habe, ersetzt include_options den alten Ausdruck ab Version 5.0
Gruß
Petra Hewera-Harz
Hallo,
ich benutze folgende Umsetzung:
<CMS_INPUT_COMBOBOX name="pt_scProd" useLanguages="no">
<CMS_INCLUDE_OPTIONS type="database">
<LABELS>
<LABEL lang="*">#item.Prod</LABEL>
</LABELS>
<TABLE>b.scprodcat</TABLE>
</CMS_INCLUDE_OPTIONS>
<LANGINFOS>
<LANGINFO lang="*" label="Produkt für SC" description="wichtig für SC"/>
</LANGINFOS>
</CMS_INPUT_COMBOBOX>
also statt include_content >> include_options
So weit ich die Docu verstanden habe, ersetzt include_options den alten Ausdruck ab Version 5.0
Gruß
Petra Hewera-Harz
Vielen Dank für die Hilfe. Das hat super geklappt.