Hi,
I have a RadTabStrip where I set the OnClientTabSelected as such:
The javascript implementation of the "OnSelected" method is the following:
A very simple implementation.
My AjaxManager is implemented as such:
The serverside event of "AjaxRequest" has an empty implementation with a breakpoint inside.
When I execute this code and I change tabs, the javascript function is called correctly, but the serverside event is never called.
I tried the exact same code using a button instead of the tabstrip, and it works fine.
I tried it with the OnClientTabSelected event, and no dice either.
Is this a bug? Am I missing something?
Thank you.
I have a RadTabStrip where I set the OnClientTabSelected as such:
<telerik:RadTabStrip ID="tabstrip1" runat="server" SelectedIndex="0" MultiPageID="multipage1" OnClientTabSelected="OnSelected">The javascript implementation of the "OnSelected" method is the following:
function OnSelected(sender, args) { var ajaxManager = $find("<%= ajax1.ClientID %>"); ajaxManager.ajaxRequest("test");}A very simple implementation.
My AjaxManager is implemented as such:
<telerik:RadAjaxManager ID="ajax1" runat="server" OnAjaxRequest="ajax1_AjaxRequest"> <AjaxSettings> blablabla code here </AjaxSettings> </telerik:RadAjaxManager>The serverside event of "AjaxRequest" has an empty implementation with a breakpoint inside.
When I execute this code and I change tabs, the javascript function is called correctly, but the serverside event is never called.
I tried the exact same code using a button instead of the tabstrip, and it works fine.
I tried it with the OnClientTabSelected event, and no dice either.
Is this a bug? Am I missing something?
Thank you.