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