Hi I have 8 tabs. The first 2 are General information and Employee Information. I want these to be completely filled out first before tabs 3-8 are accessible.
I just inherited this applicaition so I am new to telerik . Any input is appreciated.
1 Answer, 1 is accepted
0
Ivan Danchev
Telerik team
answered on 02 Feb 2017, 02:26 PM
Hello,
The TabStrip's Tabs can be initially disabled (Enabled="False") and then enabled on the client using the control's client-side API. Here's an example, which shows how the initially disabled Tab3 and Tab4 can be enabled in a button's click handler. You can do that conditionally depending on your specific scenario:
<script type="text/javascript">
function enableTabs() {
var tabstrip = $find("<%= RadTabStrip1.ClientID %>");