I am really struggling here.
I have a master page with a Radajaxmanager. On my child form I pop up a Radform. The user enters some data. When they close it the Radajaxmanager ajax_request event fires on the master. How do i update the controls on the child form in code behind withou a full page post back?
What i was hoping to to is have the ajax_request event fire in the child form so i can update the controls without a postback.
I tried to capture the event but it is ignored.
Dim manager As RadAjaxManager = RadAjaxManager.GetCurrent(Page)
Thanks.
I have a master page with a Radajaxmanager. On my child form I pop up a Radform. The user enters some data. When they close it the Radajaxmanager ajax_request event fires on the master. How do i update the controls on the child form in code behind withou a full page post back?
What i was hoping to to is have the ajax_request event fire in the child form so i can update the controls without a postback.
I tried to capture the event but it is ignored.
Dim manager As RadAjaxManager = RadAjaxManager.GetCurrent(Page)
AddHandler manager.AjaxRequest, AddressOf Local_AjaxRequest
Thanks.