Hi,
I'm trying to make a toolbarbutton do a full postback so it can attach a document (from database) back to the client.
The toolbar is dependent on a treeview to enable/disable buttons.
In page_load:
And settings in RadAjaxmanager:
I get it to work if I use RadAjaxPanels but not with RadAjaxManager(proxy).
I'm trying to make a toolbarbutton do a full postback so it can attach a document (from database) back to the client.
The toolbar is dependent on a treeview to enable/disable buttons.
In page_load:
| ScriptManager.GetCurrent(this.Page).RegisterPostBackControl(toolbar); |
And settings in RadAjaxmanager:
| <telerik:AjaxSetting AjaxControlID="treeview"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="toolbar" /> ... |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
I get it to work if I use RadAjaxPanels but not with RadAjaxManager(proxy).