How to implement UI like kendo tooltips

How to implement UI like kendoUI tooltips as https://docs.telerik.com/kendo-ui/api/javascript/ui/tooltip

Please show me your suggest.
Thanks

Hello @dat,

Please see this post to know how to work with the tooltips in the form:

Hi, this doesn't seem to work for dropdowns. Please advise

Hello,

I have the same problem and I think I found a solution, but maybe there is a better way ...

Thank you,

Daniël

My Solution:
(set title with attr in div and input element)

var string = 'Tooltip Text';
$($(fd.field('LookupMulti').$el).find('div')).attr('title', string);
$($(fd.field('LookupMulti').$el).find('input')).attr('title', string);
fd.field('LookupMulti').refresh();

1 Like