Hello,
I put tooltips to some cells. When cell has IsEnabled = true, I can see tooltip, if not, tooltip is not displayed. I want tooltips to display in every cell, is there any option to do this?
Thank you.
Hmm... Looks like I have discovered undocumented feature :)
This is what I do in CellControlAttached event:
ToolTipService.SetToolTip(cell.Control, string.IsNullOrEmpty(item.Tooltip) ? null : item.Tooltip);
This works only when cell is enabled.
To disable cell, I create new style setter with IsEnabledProperty set to false and apply style to cell.
Hi,
So, currently we don't have a Tooltips feature to the XamWebGrid.
However, i'm curious to how you're applying the Tooltips, and what you're marking as IsEnabled.
-SteveZ