tooltip

sets a popup message next to the item when the cursor points to it

string|boolean|function|object tooltip;

Example

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"}
        ]}
      ]}
    ]
});

Related samples

Details

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.

See also
Back to top
If you have not checked yet, be sure to visit site of our main product Webix best ui framework and page of tree grid ui product.