Is possible insert in a dataview different hint for each column header?
Hi @Luca Citernesi, Yes, this is definitely possible, although not by default. You can achieve this by using labels with customized hover tooltip text for each one. By default, tooltips can be applied to each layout block/column, but this displays the hint in every cell of the column, not just in the header. To limit the tooltip to the header area, I recommend using a label-based approach, as shown in the example below:
You can implement this using the following steps: 1) Add a label and position it on each column header where you want the hint icon with the text 2) Style it as a shape/icon to visually indicate a tooltip (e.g. using the question mark icon like in the example above) 3) Enter your hint text in the label's "hover tooltip" property (as shown below).
One thing to note with this approach is to be mindful of column resizing. If users are allowed to resize columns, labels may shift out of alignment with their intended positions. To prevent this, consider disabling the "Allow User to Resize Columns" option in your table settings. Hope this helps. Kind regards, Hamza