Hello,
I have a popup fancy box in my grid, Which contains a form that I do updates on my table. When I close the fancy box I would like to refresh grid to see updated values. Is there any solution for that?
2 Answers
You can use following JS code: (where list1 is grid id)
$(".fancybox").fancybox(
{ onClose:function(){
$("#list1").trigger("reloadGrid", [{current:true}]);
}
});
Your Answer