shx-3d-render

main
Jan Umbach 2024-06-15 12:36:56 +02:00
parent 83dfa240b1
commit d65f4d8146
1 changed files with 4 additions and 3 deletions

View File

@ -90,9 +90,10 @@
"test1": {
"renderHTML": (section_id) => {
let html = defaultStyle;
html += SHX_IFC_genTextInput('shx-text1', 'Custom Text 1', 'Custom Text 1', globalInputFormsObjValues['test1']['shx-text1'], section_id);
html += SHX_IFC_genDropdownSelect('shx-font', 'Schriftart', 'dropdown', globalInputFormsObjValues['test1']['shx-font'], ['LT Beverage', 'test2', 'test3'], section_id);
// elementID, labeltext, shopping cart name, initial value, section_id
html += SHX_IFC_genTextInput('shx-text1', 'Custom Text 1', 'Text', globalInputFormsObjValues['test1']['shx-text1'], section_id);
html += SHX_IFC_genDropdownSelect('shx-font', 'Schriftart', 'Schriftart', globalInputFormsObjValues['test1']['shx-font'], ['LT Beverage', 'Arial'], section_id);
html += SHX_IFC_genRenderButton();
return html;