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

Popular posts from this blog

Asterisk AGI Python Script to Dialplan does not work -

python - Read npy file directly from S3 StreamingBody -

kotlin - Out-projected type in generic interface prohibits the use of metod with generic parameter -