How to use custom cell editors to create a data entry form
This example demonstrates how to use custom cell editors to create a data entry form that allows end-users to quickly generate invoices. The required data entry fields are marked with an asterisk. To...
View ArticleHow to convert and then print GridControl by using XtraReport
This example demonstrates how to dynamically create a report based on the GridControl at runtime. This means that all filtering, sorting and grouping conditions selected in the grid are also applied in...
View ArticleHow to handle GridControl's events by using the EventToCommand extension
MVVM Framework provides the EventToCommand class that allows delegating event processing logic to the ViewModel level. This example illustrates how to use this functionality to process DXGrid...
View ArticleHow to make the auto filter row's filter accent insensitive
This example demonstrates how to create a custom function that removes all diacritic symbols from the specified string value. Using the GridView.SubstituteFilter event, this function can be injected...
View ArticleGridView - How to implement cascaded combo boxes in the EditForm
This example is an illustration of the KA18675: MVC ComboBox Extension - How to implement cascaded combo boxes KB Article. Refer to the Article for an explanation.Question CommentsAdded By: Cankut at:...
View ArticleHow to show an error message when a record cannot be deleted
This example demonstrates how to show an error message when an attempt to delete a record is cancelled by the RowDeleting event handler.Question CommentsAdded By: Rabab Siblini at: 3/16/2016 11:18:39...
View ArticleHow to customize copy and paste commands
This example illustrates how to override CopySelectionCommand and PasteSelectionCommand behavior via the IRichEditCommandFactoryService substitution. This approach is based on the How to replace...
View ArticleHow to use custom dock hints and the dock zone in the DockManager
It's necessary to respecify templates corresponding to the defined resource keys. The dock zone and dock hint elements are placed in the DockVisualizerThemeKey. The resource keys for the dock zone and...
View ArticleGridView - How to use Callback Mode for the ComboBox column
UPDATED:Starting with version v2016 vol 1 (v16.1), a built-in combo box editor can operate in callback mode. You can find detailed steps by clicking the "Show Implementation Details" link below.For...
View ArticleHow to provide the quick search functionality for PivotExcelFieldListControl...
This example illustrates how to add a search box to the field list control. Our PivotExcelFieldListControl uses the TreeViewFieldsPresenter component to show fields in a tree-like view. In this...
View ArticleHow to display bookmark names in the Bookmarks pane of PDF Viewer for a...
This example demonstrates how to create a service that implements the DevExpress.XtraRichEdit.Services.ILinkUpdater interface to change titles used to display document bookmarks in the Bookmarks pane...
View ArticleHow to implement setting custom margins in ASPxSpreadsheet
This code example demonstrates how to implement setting custom margins in the ASPxSpreadSheet.To test the functionality, choose menu item Margins - Custom Margins, set preferable values and open a...
View ArticleHow to configure dxDataGrid with Angular Approach
This example demonstrates how to display data from a data source in dxDataGrid created using the AngularJS approach.See also:Configure Widget - Angular ApproachQuestion CommentsAdded By: Marion...
View ArticleASPxGridView - Batch Editing - A simple implementation of an EditItemTemplate
This example demonstrates how to create a custom editor inside a column's EdittemTemplate when ASPxGridView is in Batch Edit mode. Since ASPxGridView performs batch editing on the client side, we...
View ArticleHow to populate a List View with data from a LINQ query
NOTE: Starting from version 16.1, a simpler solution can be implemented based on the How to: Display a Non-Persistent Object's List View from the Navigation article, using a non-persistent object to...
View ArticleGridView - How to add a custom button to the FilterPanel
This example demonstrates how to add a button to the FilterPanel.To use this solution in your application, execute the following steps:1. Create a custom GridControl as it is shown at How to create a...
View ArticleASPxGridView - How to show the number of selected rows in the Pager bar
This example demonstrates how to show the number of selected rows in the Pager bar. It is necessary to create a custom PagerBar template for this purpose. This template will contain ASPxLabel that...
View ArticleHow to bind a Bound Image dashboard item to data in code
The following example shows how to use a Bound Image dashboard item to display a specified image accessible by a predefined URI.
View ArticleHow to add custom filter items into the DateTime filter popup window
In the latest versions, you can use the ShowFilterPopupDate event to add a custom filter item to the filter dropdown. See the ShowFilterPopupDate topic for additional information and code...
View ArticleHow to change the Grid's height according to the total height of its rows
The size of each GridView's element is calculated by the GridViewInfo class. The instance of the GridViewInfo class, containing information about a specific GridView instance, can be obtained via the...
View Article