tooltip

задает тултип, который появится при наведении курсора на элемент

boolean|string|function|object tooltip;

Example

webix.ui({
    view:"datatable",
    columns:[
        { id:"rank",  tooltip:false, width:50, header:"", css:"rank" },
        { id:"title", tooltip:"Title: #title#<br>Rating: #rating#",
            width:200, header:"Film title" },
        { id:"year",    header:"Year"},
        { id:"votes",   header:"Votes"}
    ],
    tooltip:true,
    autoheight:true,
    autowidth:true,
 
    data:small_film_set
});

Related samples

Details

Тултипы можно задавать для каждой колонки. Если в настройках колонки его нет, в тултипе будет отображаться содержимое ячейки (все, что вернет темплейт колонки).

See also
Наверх
If you have not checked yet, be sure to visit site of our main product Webix html5 ui library and page of javascript datagrid library product.