hi,
i have a problem in my scenario: when i call a radwindow, after closing this and handling the closing event in javascript, i call a a ajax request from the RadAjaxManager:
then codebehind:
so when i watch the control propertys(from combobox) in codebehind, everything is allright but in the browser nothing is updated...
when i call the RadAjaxPanel.RaisePostBackEvent(""); from the RadAjaxPanel that encloses all controls, the controls are updated in the browser, showing new entrys and activation status but i can't open the combobox or in an other scenario i can't click the treeview nodes...
so my question is, why are the controls in the browser in a status like freezing, when i call the RaisePostBackEvent method
or
is there an other way to update controls like combobox or treeview like the rebind of the datagrid???
sorry for my english..
i have a problem in my scenario: when i call a radwindow, after closing this and handling the closing event in javascript, i call a a ajax request from the RadAjaxManager:
| function OnClientClose() { |
| // After Closing the dialog: AjaxRequest |
| $find("<%= manager.ClientID %>").ajaxRequest("ClientClose"); } |
then codebehind:
| protected void manager_AjaxRequest(object sender, AjaxRequestEventArgs e) |
| { |
| switch (e.Argument) |
| { |
| case "": |
| //refill combobox, enable button,... |
| break; |
| } |
| } |
so when i watch the control propertys(from combobox) in codebehind, everything is allright but in the browser nothing is updated...
when i call the RadAjaxPanel.RaisePostBackEvent(""); from the RadAjaxPanel that encloses all controls, the controls are updated in the browser, showing new entrys and activation status but i can't open the combobox or in an other scenario i can't click the treeview nodes...
so my question is, why are the controls in the browser in a status like freezing, when i call the RaisePostBackEvent method
or
is there an other way to update controls like combobox or treeview like the rebind of the datagrid???
sorry for my english..