I was checking the RibbonBar control. To my understanding, we can hide / unhide ribbongroup within a bar using client side script (Java script). Is there a way to change the tab dynamically using client side script?
Regards,
Kajal
1 Answer, 1 is accepted
0
Helen
Telerik team
answered on 27 Dec 2012, 02:18 PM
Hi Kajal,
You may use the following code to change the selected tab index:
var ribbon = $find("<%=RadRibbonBar1.ClientID %>");
ribbon.set_selectedTabIndex(1);
}
</script>
All the best,
Helen
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.