Please upload cascading combo examples for both dhtmlx touch and dhtmlx combo(using data processor).
rgds,
roosen
Please upload cascading combo examples for both dhtmlx touch and dhtmlx combo(using data processor).
rgds,
roosen
thank you for the post.
Based on given attachment I modified the program to get values from database successfully.
//////////////////////////////////////
14_select_select_client_db.html
////////////////////////////////////
$$("sel1_list").define("template","#id#");
$$("sel1_list").load("gridData.php");
//$$("sel1_list").parse([{ id:"A"},{ id:"D"},{ id:"E"},{ id:"N"},{ id:"S"},{ id:"W"},{ id:"Z"}]);
$$("sel2_list").define("template","#name#");
//$$("sel2_list").load("data.json");
$$("sel2_list").load("gridData.php");
$$('sel2_list').bind($$('sel1'), function(linked, master){
if (!master) return true;
return linked.id.indexOf(master) == 0;
});
});
</script>
</body>
////////////////////////////////////
gridData
/////////////////////////////