java - Getting tabindex value for UIComponent -
i'd tabindex
of current uicomponent
in generic way. gettabindex()
available few components. there way of getting without casting component proper type?
i thinking getting tabindex
attribute current component how to this?
use uicomponent#getattributes()
.
object tabindex = component.getattributes().get("tabindex"); if (tabindex != null) { // ... }
Comments
Post a Comment