How 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 calculate a weighted average function
This example demonstrates how to calculate a weighted average function. To do this, create a calculated field and in its expression, refer to two data fields and separate them using a special sign...
View ArticleHow to bind GridView with standard in-memory data sources (DataTable, List)
This example illustrate how to bind the MVC GridView Extension with the standard in-memory data sources:- The ADO.NET DataTable - DataTableDataBinding View / DataTableDataBindingPartial Partial View;-...
View ArticleReport Storage for the End-User Report Designer
The following example demonstrates how to implement a report storage to persist report definitions in a database or in any other custom location. This may be useful when providing end-users with the...
View ArticleHow to create a custom Edit Appointment form using the MVVM pattern
This example demonstrates how to substitute the standard Edit Appointment form with the custom one using the MVVM approach. The new technique is based on a service provided by a data template. This...
View ArticleHow to save and restore settings of all controls that are present in the UI
Methods for saving and restoring a layout implemented in specific controls (such as DockLayoutManager.SaveLayoutToStream and DockLayoutManager.RestoreLayoutFromStream) are intended for saving/restoring...
View ArticleHow to print the ASPxScheduler using a Report Preview
This example illustrates how to make a printout of the ASPxSchedulerControl. The application creates the XtraSchedulerReport class descendant which uses Scheduler data, the ASPxDocumentViewer control...
View ArticleHow to save and restore the DockLayoutManager layout
DockLayoutManager provides several methods to save and restore layout settings:- SaveLayoutToStream;- SaveLayoutToXml;- RestoreLayoutFromStream;- RestoreLayoutFromXml.Note that item names are used to...
View ArticleHow to create items with subitems in TileBar using XAML
This example shows how to populate TileBar in XAML. To add an item into TileBar, add the TileBarItem element into the TileBar.Items collection. Please note that Items is a content property, so you can...
View ArticleHow to: use the AppBar control to create a menu that is shown on top or...
This example shows how to create an app bar containing custom regular and toggle buttons, the predefined Exit button, and the button that displays a flyout when clicked.In this example, the AppBar...
View ArticleHow to: create TileNavPane navigation buttons and categories in XAML
This example shows how to create a TileNavPane, populate it with navigation elements and add custom buttons to the nav bar.In the XAML markup, four buttons are added to the NavButtons collection....
View ArticleHow to: navigate from one view to another in the NavigationFrame when...
This example demonstrates how to navigate between views without executing code at the view model level. If you wish to control navigation from the view mode, please refer to: How to: Navigate between...
View ArticleOBSOLETE - How to populate ComboBoxEdit with enumeration elements
======================This article is now obsolete starting from 14.2. Refer to the How to: Use EnumItemsSourceBehavior ticket instead.======================To bind ComboBoxEdit to an enum, use the...
View ArticleHow to: implement selection in the MVVM style
This example demonstrates how to implement chart element selection in the MVVM style.
View ArticleGridView - How to update total summaries on the client side in Batch Edit mode
This example demonstrates how to update total summaries on the client side when GridView is in Batch Edit mode. To implement the required task, perform the following steps:1. Add a total summary item...
View ArticleHow to serialize DockLayoutManager when TabbedDocumentUIService is used
Some of DockLayoutManager’s panel groups can contain documents that were created from ViewModel with IDocumentManagerService. To serialize and restore them correctly, it is necessary to perform the...
View ArticleHow to: Arrange items horizontally and vertically
To arrange DockLayoutManger items horizontally or vertically, use Layout Group objects. A LayoutGroup is a container that may contain different items:- Other Layout Groups;- Layout Panels;- Tabbed...
View ArticleHow to display items in tabs
The DXDocking suite provides several approaches to display content in tabs. For this, you can use either of the following containers- A LayoutGroup with GroupBorderStyle set to Tabbed;- A TabbedGroup;-...
View ArticleHow to build a layout similar to Visual Studio
Let’s see how to build a layout similar to Visual Studio using the DXDocking Suite. Below is the screenshot of the Dock Windows -> VS2010 Docking demo.The window layout contains the following...
View ArticleHow to: display axis labels between tickmarks
This example demonstrates how to display labels between tickmarks.
View Article