We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.client.ui.aria.
Interface HandlesAriaCaption
-
All Known Implementing Classes:
VAbstractPopupCalendar
,VAbstractTextualDate
,VComboBox
,VPopupCalendar
,VPopupTimeCalendar
public interface HandlesAriaCaption
Some Widgets need to handle the caption handling for WAI-ARIA themselfs, as for example the required ids need to be set in a specific way. In such a case, the Widget needs to implement this interface.
-
-
Method Summary
All Methods Modifier and Type Method Description void
bindAriaCaption​(com.google.gwt.user.client.Element captionElement)
Called to bind the provided caption (label in HTML speak) element to the main input element of the Widget.
-
-
-
Method Detail
-
bindAriaCaption
void bindAriaCaption​(com.google.gwt.user.client.Element captionElement)
Called to bind the provided caption (label in HTML speak) element to the main input element of the Widget. Binding should be removed from the main input field when captionElement is null.
Parameters:
captionElement
- Element of the caption
-
-