SpellChecker - An example of use
This example illustrates how to load multiple Dictionaries to check spelling of a multi-language text in a simple text box control. Also, you will see how to setup a Custom Dictionary so that the...
View ArticleHow to change a report displayed in the DocumentViewer extension dynamically
This example demonstrates how you can dynamically change a report displayed by the DocumentViewer extension.A callback is used to switch reports. So, the DocumentViewer extension is placed into the...
View ArticleASPxGridView - How to implement custom date validation in Batch Edit mode
This example illustrates how to implement custom date validation in Batch Edit mode: 1) The ASPxClientGridView.BatchEditRowValidating event is used to check values on the client.2) The...
View ArticleHow to customize PDF Viewer Ribbon
The following example shows how to customize PDF Viewer Ribbon.To accomplish this task, it is necessary to override the default PdfViewerControl's RibbonTemplate and add the required bar items to the...
View ArticleHow to create a DiagramShape descendant and serialize its properties
This example demonstrates how to serialize custom data using DiagramControl's serialization mechanism. In the example, the Content property of diagram shapes is loaded from data objects every time the...
View ArticleData Source Wizard - How to customize the list of data providers
This example demonstrates how to modify the list of data providers available on the connection parameters configuration page of the Data Source Wizard when customizing the Data Source Wizard by...
View ArticleHow to repeat the Detail report band multiple times (a data-bound report)
If your report's data source is empty or not defined, you can specify how many times the Detail band content is printed through the XtraReport.PrintOptions.DetailCountOnEmptyDataSource property.If a...
View ArticleHow to load a dashboard at runtime to an MVC DashboardViewer
The following example demonstrates how to load a dashboard to an MVC Dashboard Viewer at runtime.
View ArticleHow to use the jQuery.ajax function with DevExpress MVC Extensions
This example demonstrates how you can use the jQuery.ajax function to load a GridView on a callback. Note that this feature has been implemented in the 12.1 version, so it is not available in earlier...
View ArticleHow to dynamically build a persistent class from a DataSet and then bind it...
This example is a variation of How to generate persistent classes at runtime based on a dataset with the difference that here we create a custom XPClassInfo class that provides metadata information for...
View ArticleHow to provide custom summary values for Total, Grand Total and ordinary cells
This example is made using the ASPxPivotGrid control. This approach can be used with XtraPivotGrid and DXPivotGrid controls. When the CustomSummary event is used to provide custom values for only Total...
View ArticleHtmlEditor in ASPxGridView
This example illustrates how to use the ASPxHtmlEditor control in the ASPxGridView EditForm for editing text column data.The ASPxHtmlEditor is defined within the ASPxGridView EditFormTemplate and bound...
View ArticleHow to use an unbound check box column to select grid rows
From version 13.2, the GridView in the XtraGrid control provides a built-in checkbox column for multiple row selection. This feature is demonstrated in the example that targets version 13.2. Additional...
View ArticleHow to bind the CheckedCombobBoxEdit to a collection property
The CheckedComboBoxEdit editor can be bound to a property of the string type only. To bind it to a collection properly, declare an auxiliary string property that can be used for binding. In addition,...
View ArticleASPxGridView - How to correct the column layout if column widths are set in...
This example illustrates the solution for the first issue described at ASPxGridView - Why column layout may become broken after user actions if certain column widths are set in percentages. The main...
View ArticleHow to use XtraSpellChecker in XAF
ScenarioThis example demonstrates how to incorporate the XtraSpellChecker to XAF applications.Steps to implement1. Copy the Spelling.Win project into your solution and build it;2. Invoke the...
View ArticleOBSOLETE - GridView - How to implement date range filtering using a custom...
UPDATED:Starting with version v2015 vol 2 (v15.2), this functionality is available out of the box. Simply set the MVCxGridViewColumn.SettingsHeaderFilter.Mode property to DateRangePicker to activate...
View ArticleHow to remove standard bar items and add custom ones to the DocumentViewer...
This example uses an outdated approach to solving this task that is no longer correct.Starting with the 15.1 release, it is recommended to use the approach illustrated in the following example: How to...
View ArticleHow to highlight the next or previous search result in the grid
This example demonstrates how to implement a search functionality like in Opera using the ButtonEdit editor.To use this solution in your application, execute the following steps:1. Drop the FindHelper...
View Article