Tooltip radzengrid

It is possible to add a tooltip on a field of the RadzenGrid ?

Hi @Matteo,

Yes you can! You can use the Template of a column and wrap the content with a <div> whose title attribute is set.

<div title="My tooltip">
  @data.MyProperty
</div>
2 Likes