Webix add tooltip to specific elements in treetable -
this example, click here has column votes set of number value. , want add tooltips elements has more 400 votes. how achieve this?
you need add tooltip property in treetable configuration:
tooltip: (obj, common) => { return (obj.votes > 400 && common.column.id === "votes") ? "your text here" : "" }
demo snippet here: https://webix.com/snippet/2ffa6713
in example tooltip shown on votes column.
wiki
Comments
Post a Comment