We have a Click Event that calls
RadAjaxManager1.ResponseScripts.Add(
"btnBankingAlertClick()");
This opens a radwindow as below
function
btnBankingAlertClick() {
var oWnd = radopen("Dialogs/Alert.aspx?ftn=6", "GenericDialogWindow");
}
In ClientClose we pick up the argument and call
if(arg.res) AjaxPostback('EndCollection:');
In RadAjaxManager_AjaxRequest a method is called and as part of that the following lines are called
RadAjaxManager1.Alert("Collection information inserted into banking sucessfully");
RadAjaxManager1.ResponseScripts.Add("btnBankingAlertDoneClick()");
When debugging i can see ths code is hit but the alert and the function are not called.
Please help!!