Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to disable clicking and going from one tabPanel to another. Like here http://www.eldan.co.il/en/ the user can't select another step. I tried something like this

if (Tabs.ActiveTabIndex == 0) { Tabs.Tabs[1].Enabled = false; }

but it hides the tab...

share|improve this question
If Tabs is the TabContainer Tabs.Tabs[1].Enabled = false should disable the second TabPanel. To hide a TabPanel you would use the Visible property. – Tim Schmelter Jul 31 '11 at 10:54
I don't want to hide anything, only disable second tab. But by default enabled = false is equal to visible = false. – Nickolay Jul 31 '11 at 11:02
what i wanted to say: i cannot reproduce your described behaviour. – Tim Schmelter Jul 31 '11 at 11:17
go to eldan.co.il/en – Nickolay Jul 31 '11 at 11:22

2 Answers

It seems you need the behaviour of wizad from tab controler. Please have a look on answer of Xinxua.

you don't even need Tab control for this senario, what you can do is

  • create panels for each step (3 panels for 3 steps)
  • create image panel to hold 3 images (you need 2 images for each step when to show on enabled and dissabled status)
  • from code you can show the panel you want and set the image.
share|improve this answer

I found something that helped me.

...prevent switching to the tab on click depending on form validation

Returning false in the tabs select handler prevents the clicked tab from becoming selected.

$('#example').tabs({ select: function(event, ui) { var isValid = ... // form validation returning true or false return isValid; } });

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.