dear all, please help. I totally newbie with EasyUI but starting to enjoy

i follow the example :
function newData(){
$('#dlg').dialog('open').dialog('setTitle','New Data');
$('#fm').form('clear');
url = 'modul/mod_part/save_data.php';
}
<a href="#" class="easyui-linkbutton" iconCls="icon-add" plain="true" onclick="newData()">New Data</a>
<div id="dlg" class="easyui-dialog" style="width:650px;height:350px;padding:10px 20px" closed="true" buttons="#dlg-buttons">
<div class="ftitle">Master Parts</div>
<form id="fm" method="post" novalidate>
<div class="fitem" align="left">
<p><label>Category</label>
<input name="id_part_cat_part" style="width:100px" class="easyui-combobox"
url="modul/mod_part/part_cat.php"valueField="id_part_cat" textField="name_part_cat" required="true"> </input>
</p>
....
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