sets a popup message next to the item when the cursor points to it
webix.ui({
view:"treetable",
tooltip:true,
columns:[
{ id:"id", header:"", width:50},
{ id:"value", header:"Film title", width:250,
template:"{common.treetable()} #value#" },
{ id:"chapter", header:"Mode", width:200}
],
data: [
{ "id":"1", "value":"The Shawshank Redemption", "open":true, "data":[
{ "id":"1.1", "value":"Part 1", "chapter":"alpha"},
{ "id":"1.2", "value":"Part 2", "chapter":"beta", "open":true, "data":[
{ "id":"1.2.1", "value":"Part 1", "chapter":"beta-twin"}
]}
]}
]
});
Content of tooltip will be defined by tooltip property from column configuration. If column has not tooltip property - content of column will be shown in a tooltip.