How to: Navigate to Another Page When Clicking SlideViewItem Headers
This example creates a SlideView control with child SlideViewItem objects. Clicking a SlideViewItem's header navigates to another page specified by the SlideViewItem.HeaderNavigationTargetType...
View ArticleHow to: Populate DXListView with Data from Datasource (Draft)
You can go through the "How to: Populate DXListView with Items from Datasource" tutorial, which is available in the documentation, to get step-by-step instructions of populating a DXListView with data...
View ArticleHow to: Populate SlideView with Data from Datasource (Draft)
You can go through the "How to: Create SlideView and Populate It with Data" tutorial, which is available in the documentation, to get step-by-step instructions of populating a SlideView with data...
View ArticleHow to: Populate SlideView with Data from Datasource (Final Code)
This example shows how to populate a SlideView control with data from a data source. A tutorial giving you step-by-step instructions to recreate this example can be found in the documentation.
View ArticleHow to populate ComboBoxEdit with enumeration elements
To bind ComboBoxEdit to an enum, use the EnumItemsSource markup extention in the following manner:[XAML]<dxe:ComboBoxEditItemsSource="{dxe:EnumItemsSource EnumType=local:MyEnum}"/>For version...
View ArticleHow to connect to a remote data service from a Silverlight application
Scenario: In this example we will create a WCF IDataStore service that will be used by our client (SilverLight Application) as a data layer. Instead of direct connection to the database, our client...
View ArticleHow to automatically generate Ribbon pages, groups and items based on a view...
This example demonstrates how to generate pages, groups and items from a collection according to the MVVM pattern. To generate pages in the RibbonPageCategory, bind the PagesSource property to a...
View ArticleHow to create a custom exporter for a specific format
This example illustrates how to create and register a custom DocumentModelExporter for a BBCode format. It supports a number of basic BBCode tags (including hyperlinks and images). The major export...
View ArticleDXRichEdit for WPF: Implementing MVVM
This example illustrates how to implement a MVVM pattern (see Model View ViewModel) in an application for RTF text editing. Model is represented by the CarInfo class with the Name and Description...
View ArticleDXRichEdit for Silverlight: Implementing MVVM
This example illustrates how to implement a MVVM pattern (see Model View ViewModel) in an application for RTF text editing.
View ArticleHow to create drill-down documents with DXPrinting for WPF
This example demonstrates how you can provide interactivity for documents that are displayed in a Document Preview for WPF.In particular, it shows how you can implement a drill-down document, in which...
View ArticleHow to implement the quick search feature for the NavBarControl
This example demonstrates how to implement the quick search feature for NavBarControl. The solution contains the SearchHelpers class that provides the CreateSearchPanel method that creates an...
View ArticleDate range filtering in the Filter Row
The ASPxGridView has the Filter Row, but unfortunately it doesn't provide the FilterRow template. However since v2009 vol 2 version, the ASPxDropDownEdit control can easily provide its template, which...
View ArticleHow to make the TreeList control have a pop up column filter
Starting with version 11.2, this functionality is supported out of-the-box when the TreeList.OptionsBehavior.EnableFiltering option is active. This sample shows how a pop up column filter can be added...
View ArticleHow to obtain only values cells that are visible
This task can be accomplished by using the GridViewInfo class. This class provides collections of the visible rows (the GridRowInfoCollection) and visible columns (the GridColumnsInfo).
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 provide the capability to display a footer at the top of a GridView
The current example illustrates how to customize the default GridView, so that it can display a footer at the top of a view.
View ArticleXtraTreeList: How to save state of checkboxes into the bound data table
The current example illustrates how to implement storing state of checkboxes which are shown in the TreeList. Checkboxes values are stored in the TreeList's bound data table.
View ArticleHow to provide sorting functionality for the grid that allows drag and drop...
This example extends the example provided in the How to reorder grid rows by drag and drop article with sorting functionality.
View ArticleSpecify an unbound column in detail view
You should configure your detail view as described in the Master-Detail: DataTable Use help topic. Take note of the 5th point: "Specify and Customize Views To Represent Datatables ". Create an unbound...
View Article