I have a grid on my page with some add/edit functions happening in a RadWindow control. I'd like to execute an AJAX request to re-bind the grid when a user closes the RadWindow. Can someone point me to a simple example of this?
I have a javascript function firing when the RadWindow closes and I tried to do:
Where Rebind_rgGallery is a simple function to rebind the grid by overriding the raisepostbackevent. When the script executes though, I get an 'ajaxManager has no properties' error. Any help would be appreciated.
Thanks
I have a javascript function firing when the RadWindow closes and I tried to do:
function windowClose() { |
var ajaxManager = $find("<%# RadAjaxManager1.ClientID %>"); |
ajaxManager.AjaxRequest('Rebind_rgGallery'); |
} |
Where Rebind_rgGallery is a simple function to rebind the grid by overriding the raisepostbackevent. When the script executes though, I get an 'ajaxManager has no properties' error. Any help would be appreciated.
Thanks