In different situations you might need to combine form with some other dhtmlx components.
You can put the following dhtmlx components into form:
Form's integration with these components is realized through the appropriate item types: calendar, colorpicker, combo and editor.
Pretty often, you need to place form into other dhtmlx components. Such dhtmlx components are also known as container components. They are:
Integration with any container component implements the same technique:
Create a container component instance
Details see in the related documentation:accordion, layout, tabbar, window.
Put form into the container
//accordion, layout, tabbar
myForm = mylayout.cells("a").attachForm();
myForm.loadStruct("data.json", "json");
//window
myForm = myWins.window("win").attachForm();
myForm.loadStruct("data.json", "json");
Back to top