Home - Forums-.NET - FlyGrid.Net (Windows Forms) - Questions about tooltips

FlyGrid.Net (Windows Forms)

.NET Datagrid - Fast, highly customizable, industry standards .NET data grid control for WinForms

This forum related to following products: FlyGrid.Net

Questions about tooltips
Link Posted: 26-Jul-2006 00:06
Hello,
We're having 2 problems with tooltips:
1. When a tooltip displays both hebrew andenglish characters - the characters appear in reversed order.
2. The header row doesn't display a tooltip even though the whole column was assigned a tooltip.

Tahnk you.
Link Posted: 26-Jul-2006 00:45

1. When a tooltip displays both hebrew and english characters - the characters appear in reversed order.

FlyGrid.Net is uses standart tooltip window to display tooltips, unfortunately current version doesn't allow to output mixed text (due the CommonControls library limitations), the next major version of FlyGrid will allow custom drawing in tooltips and will not depend on CommonControls limitations.

2. The header row doesn't display a tooltip even though the whole column was assigned a tooltip.

Please describe problem more detailly - do you mean row headers or column headers?
Link Posted: 26-Jul-2006 21:19
I mean a column header (which would be the first row in the grid).

Thank you.
Link Posted: 26-Jul-2006 23:50
Add to the flyGrid.Columns.Options ColumnsOptions.ShowTooltips option to show tooltips on column headers:
[c#]
flyGrid.Columns.Options |= ColumnsOptions.ShowTooltips;