Page 1 of 1
tooltip in grid ...
Posted: Wed Jan 04, 2023 1:05 pm
by svi
Hello,
how to add a tooltip in a single box of a grid for example 2nd zone of my 3rd line
another question how to display the value of my zone in the tooltip of this same zone
thank you in advance
Re: tooltip in grid ...
Posted: Fri Jan 06, 2023 10:59 am
by Emily
You won't be able to add the tooltip to a specific cell inside of the grid. Instead, you'll need to add the tooltip to the widget that is inside of that cell. For example, if you have an output field in that cell of the grid, you'll need to add the tooltip to the output field and
not the grid widget. If you wanted the tooltip to show the value of that widget, you can simply bind the
tooltip property to the same field that the widget is bound to. If you wanted to use JavaScript for this,
applyProperty() can be used to set a widget property:
https://docs.profoundlogic.com/x/NgAy.
Hope this helps.