Hi
I have many Tabs and PageViews. When someone make changes in the Tab1, he has to save the settings, before he can go click to the next Tab2.
I will prevent, to click the next Tab2 and he opens the PageView2.
I realized this before, with previous Version of RadTabStrip. But with the ASP.NET Ajax, something has changed i thinks.
i call this:
I have many Tabs and PageViews. When someone make changes in the Tab1, he has to save the settings, before he can go click to the next Tab2.
I will prevent, to click the next Tab2 and he opens the PageView2.
I realized this before, with previous Version of RadTabStrip. But with the ASP.NET Ajax, something has changed i thinks.
i call this:
<
telerik:RadTabStrip ID="RadTabStrip1" runat="server" OnClientTabSelected="onBeforeClientTabClicked"
function
onBeforeClientTabClicked(sender, args)
{
return false;
//return manageBeforeStatement(); //check if the next Tab is selectable or not.
}
i think, when i return FALSE, then the next is not seletable !
is this so?
best regards
toprak