Hi,
I found this bit of code else where to tell a RadAjaxPanel to do a full postback.
First in the code behind put:
cmdExport.Attributes.Add(
"onclick", String.Format("realPostBack('{0}', ''); return false;", cmdExport.UniqueID))
Then in the aspx put:
| <telerik:RadCodeBlock id="codeblock1" runat="server"> |
| <script type="text/javascript"> |
| function realPostBack(eventTarget, eventArgument) |
| { |
| $find("< % = RadAjaxPanel1.ClientID % >").__doPostBack(eventTarget, eventArgument); |
| } |
| </script> |
| </telerik:RadCodeBlock> |
The only problem is that I am not using a RadAjaxPanel, I'm just using a RadAjaxManager.
How can I do the same thing with a RadAjaxManaged control?
Thanks ... Ed
