I open a popup window :
nuPopup('5b6ef35b2854c7e',$('#Patients_id').val());
What I want is, when the popup is closed
the main form window to be refreshed :
Code: Select all
nuGetBreadcrumb()
I would appreciate your help
Code: Select all
nuGetBreadcrumb()
Code: Select all
if (nuFormType() == 'edit') {
$('#dialogClose', parent.document).click(function(e) {
parent.nuGetBreadcrumb();
});
}