Title: Nested Dialog Form Post by: putusundika on July 01, 2012, 08:24:40 PM dear all, please help. I totally newbie with EasyUI but starting to enjoy :)
i follow the example : Code: function newData(){ I'm using PHP and MySQL, so far its work. so every time i click Add New button, dialog form will show up with combobox. Now, my problem is : if the items is not in list, i want to open another dialog form to add new item to the combobox. So, i need open 2 dialog form whichis nested. how can i do that ? or maybe any complete simple example for this ? sorry for typo and my bad english regards Title: Re: Nested Dialog Form Post by: stworthy on July 02, 2012, 02:23:22 AM Why to open another dialog form to add new item to the combobox? The combobox data has been loaded via 'modul/mod_part/part_cat.php'.
Title: Re: Nested Dialog Form Post by: putusundika on July 02, 2012, 06:38:35 AM thnks for reply n support stworthy
my combo box refer through file modul/mod_part/part_cat.php to table(name_part_cat) which is has 2 fields : id_part_cat and name_part_cat. none of these fields allows to empty (both required). part_cat.php : Code: $rs = mysql_query("select * FROM part_cat order by name_part_cat ASC"); does "The combobox data has been loaded .." means : i just typing directly new item inside combo box ? best regards |