Displaying Vertical Borders in Columns The following code demonstrates how to use the BorderColor property of the Cell’s Appearance to display vertical lines for column borders. In Visual Basic: In C#:
DoubleClick Events Many use cases require that on the double click of an entity (a row in a grid, a node in a tree), actions such as loading a form with detailed information occurs. DoubleClickRow Imagine a WinGrid loaded with records and upon the end user double clicking on a Row, a Form loads with the current re...
Editable Headers in the WinGrid Overview Enabling the Editable Headers feature allows users to modify column, group, and band headers on the UltraGrid. In C#: In Visual Basic: AllowHeaderEditing The AllowHeaderEditing enumeration can have the following values: Value Description Default Headers are not editable by ...
Editing Data Following are links that describe the various ways of editing and manipulating data in a WinGrid. Adding Rows to WinGrid Programmatically Adding New Rows to WinGrid Assigning an Editor Using ColumnStyle BeforeEnterEditMode Event BeforeExitEditMode Event Enabling AutoEditMode Creating Edit Menu with Cl...
Embeddable Column Editors Before You Begin Embeddable editors represent a major structural enhancement to WinGrid™ as well as other Infragistics Window Forms controls. Simply put, Embeddable editors embody all of the features and functionality that will allow you to provide a solid data entry point without having ...
Embeddable Editors Embeddable editors represent a major structural enhancement to WinGrid™ as well as other Infragistics Window Forms controls. Simply put, Embeddable editors embody all of the features and functionality that will allow you to provide a solid data entry point without having to write code. You can u...
Enabling AutoEditMode The UltraGrid allows you to enter edit mode by typing in the active cell. This improves the extensibility of your grid by allowing users to quickly begin editing a cell. Enable AutoEditMode You can allow the user to enter editing mode automatically when a cell is activated and the user enters...
Enabling Card View To enable Card View, you simply need to set the CardView property to True. The band that you wish to set to Card View is the Band where you must set the CardView property. The following code sets Band 0 to Card View. Again, note that whichever Band you set to Card View will be the last visible B...
Enabling External Filtering Topic Overview Purpose This topic demonstrates, with code examples, how to enable and implement external filtering functionality in the WinGrid™ control. In this topic This topic contains the following sections: External Filtering in the WinGrid – Conceptual Overview Introduction Enabli...
Enabling Grouping (WinGrid, GroupBy) The following code demonstrates how to programmatically enable Outlook GroupBy mode and then group records of a band by a column. In this example, root band’s records will appear grouped according to the value of the Country field. In Visual Basic: In C#: The following snapshot...