Version

Search Results

Disabling a WinGrid Column

Disabling a WinGrid Column If your WinGrid™ contains columns of information that must not be modified, or don’t apply in a specific situation, you can disable those columns by setting the CellActivation property off the Column object to Activation.Disabled. The Activation enumeration also contains other useful act...

Disabling a WinGrid Row

Disabling a WinGrid Row If a certain record in your database doesn’t apply in a specific situation, or you need to keep your end users from modifying the data within that record, you can disable the Row that contains that record by setting its Activation property to Activation.Disabled. The Activation enumeration ...

Disabling Delete Row Confirmation

Disabling Delete Row Confirmation Topic Overview Purpose This topic provides an overview on disabling the confirmation dialog when deleting a row. Disabling Delete Row Confirmation Feature Overview This feature provides the developer with an additional option for disabling the confirmation dialog when the user att...

Disabling the Splitting of WinGrid into Regions

Disabling the Splitting of WinGrid into Regions By default, the WinGrid™ can be split into multiple scroll regions, either by Row or Column . To prevent the user from splitting the grid via regions, you can set the MaxColScrollRegions or MaxRowScrollRegions properties to 1. In Visual Basic: In C#:

Display Cell Image in GroupBy Header

Display Cell Image in GroupBy Header Previously the WinGrid™ had the capability of displaying images in group-by rows by setting the UltraGridGroupByRow’s Image property off the Appearance class. Now with the implementation of this functionality, this is automatically taken care of by the WinGrid. When the rows ar...

Display/Store Values Using ValueLists

Display/Store Values Using ValueLists Using ValueLists , you can display one value and store another. This example assumes your WinGrid™ is already bound to some type of data source. To display and store a ValueList: Before you start writing any code, you should place using/imports directives in your code-behind s...

Displaying a Picture in a Cell

Displaying a Picture in a Cell You must set the ImageBackground property of the CellAppearance object to a picture object, or to an image in an image list. In Visual Basic: In C#: Place the above snippets into the InitializeLayout event of the WinGrid™. Run the project and you should see the picture you loaded as ...

Displaying an Ellipsis for Truncated Cell Text

Displaying an Ellipsis for Truncated Cell Text The following code demonstrates how to use the TextTrimming property of the CellAppearance object to display an ellipsis when the text of a Cell is too long to fit within the visible area of the cell. Note Note This does not apply to multi-line cells. In Visual Basic:...

Displaying an Image in a Cell Button

Displaying an Image in a Cell Button The following code demonstrates how to display an image in a cell button. In Visual Basic: In C#:

Displaying Checkbox in Column Header

Displaying Checkbox in Column Header WinGrid™ has the ability to select the value for all cells within a particular Boolean column, via a checkbox placed in the column header. This provides the ability to automatically synchronize with all the cell values within the column. The functionality can be enabled through...