Hello dhtmlx Team.
Is it possible to show tooltips only for cells that I want to in one column of dhtmlxGrid ?
I tried this:
<% if contact.email && contact.email != “” %>
<![CDATA[<%= h(contact.email) %>]]>
<% else %>
<% end %>
but a empty tooltip is display for all empty cells instead of hiding it.
You can control showing tooltips with enableTooltips(list) method where list - list of true/false values, tooltips enabled for all columns by default.
Please note that it’s impossible to hide empty tooltip in IE if tooltips are enabled for this column.