Hi
I am trying to pass selected index via client side function with below code
<telerik:RadButton ID="btnDeliverySetting" ClientIDMode="Static" OnClientClicking="function(button,args){getRadTabStrip('<%=NotificationsWizardTS.SelectedIndex%>','<%=NotificationTypesTS.SelectedIndex%>');}" runat="server" Text="Continue" ButtonType="StandardButton" CssClass="btn_Normal">
</telerik:RadButton>
and at client side my function is as under
function getRadTabStrip(NotificationsWizardTSIndex, NotificationTypesTSIndex) {
alert("Wizard" + NotificationsWizardTSIndex);
alert("Type" + NotificationTypesTSIndex);
}
This is alerting just string "Wizard<%=NotificationsWizardTS.SelectedIndex%>" and "Type<%=NotificationsTypeTS.SelectedIndex%>"
How can i pass indexof both selected tabs?