Version

Search Results

Grouping Columns in Row Layout using code

Grouping Columns in Row Layout using code Grouping Columns is possible in Row Layout mode by setting the WinGrid control’s RowLayoutStyle property to GroupLayout. This allows for an indefinite number of groupings. The RowLayoutColumnInfo object exposed on columns and groups contains a ParentGroup property. This in...

Configuring the Grouping Criterion (WinGrid, GroupBy)

Configuring the Grouping Criterion (WinGrid, GroupBy) The GroupByMode property on the UltraGridColumn allows you to specify how the WinGrid™ creates GroupBy rows based on a particular aspect of the data found in a column. For example, you can group all of the names in a column based on the first letter of the name...

Grouping Rows by Custom Logic Using IGroupByEvaluator

Grouping Rows by Custom Logic Using IGroupByEvaluator Before you Begin There are different ways of grouping records of a band by a column. The GroupByMode property allows you to select one of several predefined Outlook Group By behaviors by which you can group your data by. It is possible that you might have to gr...

Grouping (WinGrid)

Grouping (WinGrid) Introduction This group of topics cover the WinGrid™ control’s row-grouping feature. Topics Topic Purpose Enabling Grouping This topic demonstrates, with code examples, how to programmatically enable grouping in WinGrid and then group records of a band by a column. Expanding Grouped Records This...

Handling Filtered Rows Using Filter Actions

Handling Filtered Rows Using Filter Actions Row filtering in the WinGrid™ was previously an all-or-nothing process. Filtered rows were removed from view, or no filtering was performed. With the addition of row filter actions, you have much more flexibility in handling the rows that have been filtered. You can stil...

Handling Invalid Cell Input

Handling Invalid Cell Input InvalidValueBehavior Property The InvalidValueBehavior property lets you easily specify the behavior that occurs when the user attempts to leave a cell after an invalid value is entered. For example, you can specify that WinGrid™ reverts the value back to the original value and cell is ...

Header and Row Tooltips

Header and Row Tooltips Property for setting the tooltips on the header of a column. Added ToolTipText to the following: UltraGridRow — Specifies the tool tip to display when the user hovers the mouse over the row. HeaderBase — Specifies the tool tip to display when the user hovers the mouse over the header. Summa...

Headers on Top and No Repeat Headers

Headers on Top and No Repeat Headers A HeaderPlacement property has been added to UltraGridOverride . This specifies if and how headers are displayed. This property is of HeaderPlacement enumeration type. The enumeration has the following members: Default — The default is resolved to RepeatOnBreak. RepeatOnBreak —...

Hiding Columns and Groups

Hiding Columns and Groups In This Topic To hide a column at design time: To hide a column at run time: ColPosChanged Events To hide a column at design time: If your grid has a DataSource set up at Design-time, you can hide columns or groups in the property pages. Open the property pages by selecting the grid on th...

Hiding Row Selectors

Hiding Row Selectors To hide row selectors: 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#: The following code demonstrates how to hide the row selectors in the WinGrid™ co...