How to show the CheckedComboBoxEdit editor in the Parameters dialog
This example demonstrates how to embed a CheckedComboBoxEdit control to the Parameters panel in a Print Prevew for parameters editing.The main idea is to handle the...
View ArticleHow to synchronize the focused row in XtraGrid with CurrencyMangaer.Position...
XtraGrid automatically synchronizes its focused row index and the CurrencyManager.Position property. However, the BindingContext does not create the CurrencyManager for Server Mode components...
View ArticleHow to implement a web handler for the UploadControl
The following example shows how to implement a web handler for the UploadControl.In this example, the HTTP handler receives files and saves them to a required directory. The file and directory names...
View ArticleHow to: Use DXSplashScreenService
The DXSplashScreenService provides methods to show and hide a splash screen from a View Model. The following example shows how to use this service.Question CommentsAdded By: Sigfrid Couto Fernandez at:...
View ArticleHow to automatically load a Cartesian data shapefile to geo map
This example demonstrates how to load automatically load a Cartesian data shapefile to geo map.
View ArticleHow to: Drag-and-Drop GridControl Rows to the TreeList
This example demonstrates how to drag-and-drop rows from the Grid Control to the Tree List control. To support drag-and-drop operations within the GridView, set the...
View ArticleHow to programmatically fill a PDF Form with values
The following example demonstrates how to obtain a list of current fields in a PDF Form (via the PdfFormData.GetFieldNames method) and how to apply new field values to an existing PDF Form (via the...
View ArticleWinForms - The RichEditControl's common API
This example demonstrates how to use RichEditControl's API to programmatically manage the RichEditControl's behavior (commands, services).The application includes the RichEditControl (at the bottom)...
View ArticleHow to display a custom control over the worksheet cell
This example demonstrates how to use the SpreadsheetControl.GetCellBounds method to display the ComboBox control over a worksheet cell preventing end-users from entering a wrong value in a cell. Each...
View ArticleHow to override the standard AutoFilter behavior (Prevent filtering until...
The example implements a custom FilterCell Template in order to prevent filtering until the user presses the “Apply" button. It overrides the Autofilter's default behavior (applying the filter after...
View ArticleASPxGridView - How to turn off automatic auto filter row processing
This example demonstrates how to turn off the automatic auto filter row processing and perform the filtering of all rows simultaneously by a button click. Perform the following steps to implement this...
View ArticlePrint Preview - How to implement a drop-down menu for sorting report data
This example demonstrates how to implement a drop-down menu that allows you to choose the sort order for a table column and then sort a table.This approach implies that you assign the...
View ArticleHow to sort a report in preview
This example demonstrates how to implement sorting in print preview.For this, handle the PreviewClick event of a column header control (e.g. XRLabel or XRTableCell), then specify a report's sorting...
View ArticleHow to override commands in the End-User Designer (custom saving)
This example demonstrates how to override and customize saving in the End-User Designer. This can be useful, for example, if all the reports in a project should be stored in a database, and are...
View ArticleASPxFileManager - How to show a confirmation dialog to overwrite an existing...
This example illustrates how to show a conformation message to overwrite an existing file in the ASPxFileManager. The conformation message is shown in the client-side...
View ArticleHow to view persistent objects in the XtraGrid and edit them in a separate...
ScenarioThis example demonstrates how to view persistent objects in the XtraGrid and edit them in a separate window in the scope of UnitOfWork , so that changes made to the object's properties can be...
View ArticleWinForms RichEdit Document API
This example demonstrates how to use RichEdit Document API to programmatically manage rich text documents (.DOC, .DOCX, .RTF).The application includes the RichEditControl (at the top) used to display...
View ArticleEnd-User Designer - How to customize parameters in the Print Preview
This example demonstrates how to customize parameters displayed in the Print Preview of the End-User Designer. The main idea is to use the XRDesignMdiController.DesignPanelLoaded event handler. In this...
View ArticleHow to implement multi-row editing in the ASP.NET ListView
The ASPxGridListEditor does not natively support multi-row editing. It is recommended to either use the single-row inline editing by setting the AllowEdit property of the ListView model to True in the...
View ArticleHow to print a record multiple times
A report displays the content placed into the Detail band once. Sometimes, it is necessary to display the detail band content several times. To implement this, add an unbound DetailReportBand and...
View Article