ASPxGridView - Keep detail grid selection in DataItemTemplate checkbox on...
By default, the detail grid loses its selection if a user goes to another page of a master grid and comes back to the current page. This example shows how to keep selection in the detail grid. The...
View ArticleImplement the "Select All" CheckBox editor in ASPxGridView's row in Batch...
This example illustrates how to change editors based on other editors in a current row when ASPxGridView in Batch Edit Mode. If an end-user checks the check box in ASPxGridView's "All" column, other...
View ArticleCreate a custom ASPxGridView filter insensitive to the number of spaces and...
This example shows how to apply a custom filter to the text in the Auto Filter Row editor. When the ASPxGridView.ProcessColumnAutoFilter event is raised before the filter criterion is applied, we parse...
View ArticleCreate ASPxGridView with a custom pager and the "Selecting a page size"...
A custom pager implementation can be performed by using separate controls. However, under certain circumstances (due to the control hierarchy recreation), it is difficult to implement this feature...
View ArticleSwitch ASPxGridView between Linq and Entity server mode data sources at runtime
This example demonstrates how to use the same grid to view different data sources. The grid's column is autogenerated.Please note that the ViewStateMode property should be disabled to allow the grid to...
View ArticleASPxGridView - Change group rows' color and set it for a child row with the...
This example shows how to change group row background color based on row level in an ASPxGridView. When a group row is expanded, each child row maintains the same color for the cell that has the same...
View ArticleASPxGridView - Implement an advanced tooltip for command buttons using ASPxHint
This example demonstrates how to implement an advanced tooltip with images for ASPxGridView's command buttons using ASPxHint. See Also:ASPxGridView - How to emulate custom and action buttons with tooltips
View ArticleDisplay ASPxGridView's visible data in WebChartControl without whole page...
This example demonstrates how to make WebChartControl display only data that is visible in the grid. WebChartControl and ASPxGridView are placed in the UpdatePanel to avoid refreshing the whole page....
View ArticleASPxGridView - Prevent focusing the first row on the first page load
To do this, handle the ASPxGridView's DataBound event handler and set the FocusedRowIndex to -1.
View ArticleASPxGridView - Show a modal popup using the control in...
This sample illustrates how to show the a modal popup from the detail grid and populate a combobox within this popup control.
View ArticleASPxGridViewExporter - Export each grid page to a separate sheet in the XLSX...
This solution is based on a feature implemented in XtraPrinting Library v2009 vol3: ID: S33129 (S33129)Now it is possible to insert page breaks, and export each page to a separate sheet.This example...
View ArticleASPxRichEdit - How to implement the Format Painter functionality
Currently, ASPxRichEdit doesn't provide the Format Painter feature out of the box. This example illustrates a possible solution to implement this functionality in a custom way by using custom ribbon...
View ArticleAccessibility: How to provide a screen reader with custom messages
This example illustrates how to provide a custom message to an Assistive Technology (for example, Screen Reader). The main idea of this approach is to add a special helper element to the page, set your...
View ArticleOptimistic concurrency in ASPxGridView without an additional "row version"...
This approach does not require adding a row's version column to the underlying table. The main idea is to generate hash strings for rows on every server action. Then, you need to generate hash for the...
View ArticleASPxCardView - Implementing CRUD functionality similarly to FormView and...
This example illustrates how to implement CRUD (create, read, update, delete) operations in the manner supported by FormView and DetailsView. In other words, records should be edited one by one. The...
View ArticleAccent-insensitive filtering in ASPxGridView with a Server Mode data source
When ASPxGridView is bound to a server mode data source, all data operations are performed on the database server: Binding to Large Data (Database Server Mode)?. Thus, results depend on database...
View ArticleASPxGridView - Show a separate detail grid when changing a master grid’s...
This example demonstrates how to implement a master-detail scenario with two separate grids. The KeyboardSupport property allows changing the master grid's focused row by pressing navigation keys. The...
View ArticleHow to dynamically generate a report and bind it to a collection of objects
This example illustrates how to create a report in code.The following steps are essential to create a report layout:1. Create a report instance and bind it to data.2. Add required bands to the...
View ArticleHow to catch the moment when a user changes a focused cell
This example demonstrates how to catch the moment when an end-user changes the focused cell
View ArticleHow to implement IDataDictionary/IDisplayNameProvider for a Business Object
Description: I'm using the System.Collections.Generic.List collection as a report's datasource. I set it like this:[C#]List<MyObject>list=newList<MyObject>();report.Datasource=list;How do I...
View Article