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

I have a rich:tabPanel in my page, what I want is trap the user from entering a tab and say you are not allowed to enter in this tab.

How can I achieve that in jquery and javascript. or rich:jQuery maybe?

Another question is how can I disabled this tab using raw jQuery or javascript? I know this is possible.

I am using richfaces 3 and jsf 2.

Thanks.

share|improve this question

1 Answer

You can use the disabled attribute to disable it and you can if necessary use the onclick attribute to show some alert.

<rich:tab disabled="true" onclick="alert('Permission denied')">
share|improve this answer
what i want is not to use the disabled attribute, and disabled it uing raw javascript or jQuery. Is this possible? thnx – Ellie Fabrero Nov 28 '11 at 0:17

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.