Login
Products
Sales
Support
Downloads
About
Home
»
Technical Support
»
Elevate Web Builder Technical Support
»
Support Forums
»
Elevate Web Builder General
»
View Thread
View Thread
The following is the text of the current message along with any replies.
Messages 1 to 3 of 3 total
Grid Cell-Level Mouseover Hint
Wed, Aug 30 2017 5:52 PM
Permanent Link
Douglas Lyman
Is there a way to accomplish a mouse-over hint at the cell level on a grid?
Thu, Aug 31 2017 9:55 AM
Permanent Link
Uli Becker
Douglas,
> Is there a way to accomplish a mouse-over hint at the cell level on a grid?
The OnCellUpdate event of a TGridColumn allows that:
if ACell.Data = '2018' then
ACell.Hint := 'Current Year';
Uli
Thu, Aug 31 2017 10:55 AM
Permanent Link
Douglas Lyman
Thanks Uli!