Displaying Data in an Alternate Card View Background Not all data presents well with the normal grid view, where there are column headers and rows of cells. The WinGrid™ provides an alternate Card View where the column headers are placed of the left and the rows display as columns. Questions How can I display my c...
Displaying Empty Message in WinGrid Topic Overview Purpose In WinGrid™ you can display a customized message at run time indicating that the grid has no data source bound to it, is bound to a data source that contains no rows, or all rows are filtered out. In this topic This topic contains the following sections: C...
Displaying Multi-Line Cells Before you start writing any code, you should place using/imports directives in your code-behind so you don’t need to always type out a member’s fully qualified name. In Visual Basic: In C#: You must set the CellMultiLine property of the Column object to True. In Visual Basic: In C#: A ...
Displaying Multi-Line Rows Background When column text is longer than the space available, the text is truncated by default. With two lines of code, WinGrid™ can be configured to display extended text in multi-line rows. Questions How do I tell the grid to display cell text on multiple lines? Sample Project This s...
Displaying Non-Scrolling Summaries The WinGrid™ displays summaries at the bottom of the row collection by default. In addition, the summaries scroll as rows are scrolled. This topic shows you how to fix the summaries so they don’t scroll. It also describes how to show summaries at the top of the row collection rat...
Displaying Row/Cell Errors Using IDataErrorInfo To display row/cell errors using the IDataErrorInfo interface: Before you start writing any code, you should place using/imports directives in your code-behind so you don’t need to always type out a member’s fully qualified name. In Visual Basic: In C#: IDataErrorInf...
Displaying Row Numbers in Row Selectors You can easily display row numbers in the row selectors of the WinGrid™ using the RowSelectorNumberStyle property. This property has four settings: None - No row numbers are displayed. This is the default setting. ListIndex - This is the index associated with ListIndex prope...
Displaying Special Row Separators The SpecialRowSeparator property lets you clearly separator the headers, filter row, fixed AddRow, fixed summary footer, fixed rows and non-fixed rows from the rows. When you use this feature, an extra UI element will be inserted below the specified special rows to create a visual...
Displaying Summary Footers for All GroupBy Rows Group-by rows are displayed when rows are grouped by column(s). Each row collection in a group displays its own summary footers. You may want to display summary footers for the group-by row collections as well. For example, suppose you group rows by a Country column....
Displaying ToolTips The WinGrid™ exposes the ToolTipText property on UltraGridCell , UltraGridRow , HeaderBase , SummarySettings and SummaryValue objects. These properties let you conveniently set ToolTip information on specific rows, cells, headers, and summaries. The ToolTip is displayed when the user hovers ove...