Title: Open Dialog by href and Load Form from Datagrid Post by: anugrast on August 08, 2016, 06:55:03 PM Please help me... I want to open dialog with href and load form on that dialog from datagrid selected row...
This is my code: HTML: Code: <div id="dlgUDOMshow" class="easyui-dialog" style="width:425px;height:500px;padding:10px;" data-options="modal:true,closed:true,cache:false"></div> JS: Code: function showUDOM(){ PHP - dialogUDOMshow.php : Code: <form id="fmUDOMshow" method="post" novalidate> My form didn't load data from datagrid even I've use $('#fmUDOMshow').form('load',row) Please help me... Title: Re: Open Dialog by href and Load Form from Datagrid Post by: jarry on August 09, 2016, 08:05:38 AM You must wait the content page to be loaded successfully before loading row data.
Code: $('#dlgUDOMshow').dialog({ Title: Re: Open Dialog by href and Load Form from Datagrid Post by: anugrast on August 09, 2016, 06:59:27 PM Thx for your help...
You are my hero.... :) :) :) |