Sample code attached is not working. Please help.
dhtmlx_touch_design-1.zip (96.8 KB)
- $$(“control_combo_6”) is “combo” control which doesn’t have load method. To load new data you need to load them to list.
- touch views do not have loadXML method.
The correct approach is
$$(“control_combo_6_list”).load("./data/test.xml",“xml”);
Thanx a lot alexndra.It worked