Tooltip on several lines on version 6.1 PRO

Hello,

I enconter an issue on tooltip formatting. I would like to have a tooltip with several lines but it turns out that it is rendered as [object Object]. Is there a way to display it correctly? My code is on version 6.1 and I cannot change this.

webix.ready(function(){
webix.ui({
view:“form”, elements:[
{ view:“text”, placeholder:“Enter you name”, label:“Name”, tooltip:{template: “First
and last name”}},
],
width:600,
elementsConfig:{
labelWidth:120, labelAlign:“left”
}
});
});

Thank you

Hello @romain ,
In case of a version earlier than 6.2, the tooltip property in ui.text is a regular html tooltip that only accepts a string:
https://snippet.webix.com/5g2o6sc6
If you want to use Webix ui.tooltip, it should be initialized as an independent component.
Here is a snippet:
https://snippet.webix.com/n48sfr1s

Thank you very much, it worked perfectly.