Hi,
I am using Windows Infragistics Grid.
I have few issues with the WinGrid which are as below :
1) I want to have "Pagination" feature in the wingrid as we have for ASP.Net.
2) I want "ToolTip" for each and every cell in the winGrid.
3) I am using "filter" provided by Wingrid. I am having first column in my grid as "checkbox" column.
So I do not want to display filter icon on the header of that column. So how to hide that default icon of filter from any one column' header.
1) I'm not sure if the WinForms grid supports pagination in the strictest sense of the word, but you can set the UltraGrid.DisplayLayout.LoadSTyle property to 'LoadOnDemand' to defer loading of rows until they are requested. Note that there are some caviats; for example, if you sort the rows that will cause all rows to be loaded.
2) See UltraGridCell.ToolTipText
3) See UltraGridColumn.AllowRowFiltering; you would want to set this to False.