I have button control in igdialog from which I am doing the ajax call, during this call I need to blur/ show progress on igdialog, so please let me know how can I do this.
Hello Rakesh,
You can simply use jQuery and bind 2 functions to ajaxStart() and ajaxStop():
$(document).ajaxStart(function() { $('#wait').show(); // show loading indicator});
$(document).ajaxStop(function () { $('#wait').hide(); // hide loading indicator});
It does not matter if the button is inside igDialog or not. Refer to my sample for a demonstration and please let me know if this is your request or if I have misunderstood you.
Thank you very much, your example helped me understanding the problem and solution for my issue.