title method
Sets the element's title (tooltip text).
Example:
Button().title('Click to submit')('Submit')
Implementation
ElementBuilder title(String value) {
attr('title', StringAttribute(value));
return this;
}
Sets the element's title (tooltip text).
Example:
Button().title('Click to submit')('Submit')
ElementBuilder title(String value) {
attr('title', StringAttribute(value));
return this;
}