Hi
I have a jqxgrid in my application with three custom buttons,in one of that button click i have opened a “DeletePopup.aspx” page in “jqxwindow” by the following code
`var buttonclick = function (event, row) {
var id = event.target.id;
var datarow = $(“#jqxgrid”).jqxGrid(‘getrowdata’, row);
if (/btnDelete/i.test(id)) {
$(“#jqxwindow”).jqxWindow(‘open’);
$(“#jqxwindow”).jqxWindow(‘setContent’, ‘<iframe src=”DeletePopup.aspx?ID=’ + datarow.uid+ ‘” width=”100%” height=”100%”></iframe>’);
}`
The popup opened fine and in the popup(DeletePopup.aspx) i have two buttons “Yes”,”No”.
While clicking the “yes” button i need to call the javascript function in the parent page & i need to refresh the grid.
Please help me regarding this asap.Its urgent to fix.
Thanks & Regards
Latha S