sets a popup message next to the textarea input when the cursor points to it
// default tooltip displays the value of Text
webix.ui({
view:"textarea", value:"Some text",
tooltip:true
});
// tooltip as a string
webix.ui({
view:"textarea", tooltip:"Type in some text"
});
// tooltip as a function
webix.ui({
view:"textarea", placeholder:"Type in some text", tooltip:function(obj){
return obj.placeholder;
}
});
// tooltip as a configuration object
webix.ui({
view:"textarea", tooltip:{
dx:10, dy:20, template:"Type in some text"
}
});
If you define the tooltip as a function, it receives the configuration object of the textarea input.
If you define the tooltip as an object, you can configure the tooltip and define its template as a string or a function.