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

I'd like to get tabindex of current UIComponent in generic way. getTabIndex() is available only for few components. Is there any way of getting it without casting component to proper type?

I was thinking about getting tabindex attribute for current component but how to to this?

share|improve this question

1 Answer

up vote 0 down vote accepted

Use UIComponent#getAttributes().

Object tabindex = component.getAttributes().get("tabindex");
if (tabindex != null) {
    // ...
}
share|improve this answer
1  
I use this in RENDER_RESPONSE phase and it seems that no such attribute is present in attributes map. It's normal or am I doing sth wrong? – peo Dec 1 '10 at 13:41

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.