How to horizontally merge cells in VGridControl
This example demonstrates how to create a custom VGridControl and manually paint required cells to merge them horizontally.Question CommentsAdded By: Kinjal Nandu at: 6/10/2016 4:39:54 AM There...
View ArticleHow to print a report without displaying it in a web application
This example illustrates the approach of printing report document directly, via Adobe PDF web browser plug-in. This can be done by sending the exported XtraReport document via the...
View ArticleASPxRichEdit - How to save and load documents from a database
This code example demonstrates how to save and restore ASPxRichEdit documents from a database using a Binary column.Use the ASPxRichEdit.Open method to load a document and call the...
View ArticleHow to implement unbound rows in PropertyGridControl
By default, unbound rows are not supported by PropertyGridControl. So, you can use VGridControl to display them. However, PropertyGridControl allows you to provide custom property descriptors via the...
View ArticleHow to display the dxChart widget in an XAF view
Scenario:It is necessary to show a chart control with a lot of points. The built-in Charts module draws all points on the same screen at once, which may be inconvenient for an end-user. To achieve...
View ArticleHow to process authenticated requests on the OData service
This example demonstrates how to process authenticated requests on the OData service. The main idea is to override the DataService.OnStartProcessingRequest method and implement authenticated logic in...
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 ArticleGridView - Batch Editing - A simple implementation of an EditItemTemplate...
This example is based on GridView - Batch Editing - A simple implementation of an EditItem template and describes how to enable client-side unobtrusive validation: 1) Wrap the GridView in a...
View ArticleGridView - Batch Editing - A simple implementation of an EditItem template
This example demonstrates how to create a custom editor inside column's DataItem template when GridView is in Batch Edit mode.You can implement the EditItem template for a column by performing the...
View ArticleHow to reorder GridView rows using buttons or drag-and-drop
This example demonstrates how to move GridView rows using buttons or jQuery UI Draggable and Droppable plug-ins. To keep the order of rows, it is necessary to set up an extra column to store row order...
View ArticleHow to maintain the visibility of components in the End-User Designer
The following example demonstrates how to maintain the visibility of components (such as DataSet and DataAdapter) in the End-User Report Designer for Windows Forms.To hide a report's associated...
View ArticleHow to load an excel file to the server using ASPxUploadControl and display...
This example shows how to load an excel file from your computer to the server using ASPxUploadControl and then display its data in ASPxGridView. To do this, you first need to place the ASPxGridView and...
View ArticleHow to bind the ASPxDataView control to the data source declaratively
To bind the ASPxDataView control to the data source declaratively, use one of the data source controls. Assign its ID to the ASPxDataView.DataSourceID property value and configure the item template to...
View ArticleHow to fill an unbound ASPxDataView control with data items at runtime
Aside from binding to a data source, you can populate the ASPxDataView control with data items manually. Data items can be added into the ASPxDataView.Items collection in code behind by using the...
View ArticleHow to bind the ASPxDataView control to a data source at runtime
To bind the ASPxDataView control to a data source at runtime, use any object that implements the IEnumerable interface such as ADO.NET datasets, data readers (e.g., SqlDataReader, OleDbDataReader), and...
View ArticleHow to save (load) a report definition from a file
This example illustrates how to save a report definition to a REPX file (by using CodeDOM serialization mechanism) and XML file, and then restore the report from any of these files.NOTE:Deserialization...
View ArticleASPxGridView - Cell Merging
The example shows how to implement the cell merge feature for the ASPxGridView control. You can use the helper class that will perform cell merging for the grouped grid as well. Please keep in mind...
View ArticleHow to use the FrameNavigationService with the Managed Extensibility...
The FrameNavigationService allows navigating between Views within a NavigationFrame. This example shows how this service can be used along with the Managed Extensibility Framework (MEF).In this...
View ArticleHow to: Build Dock UI According to MVVM Pattern Using IMVVMDockingProperties...
This example demonstrates how to build a dock UI according to the MVVM design pattern by implementing the IMVVMDockingProperties interface. This interface provides you a way to specify target groups...
View ArticleHow to import large amounts of data into ListView (Example)
See the K18260 KB Article for more information.See also:ORM Magic–Importing from any datasourceNote This example cannot be automatically converted to VB.NET because of the VB.NET compiler limitations....
View Article