ASPxGridView - How to emulate custom and action buttons with tooltips
This is a temporary workaround for the B134759 request.
View ArticleLayout API - Simple Example
This example implements a simple Visitor to traverse the document layout tree. Starting from 15.2, it includes a custom painter to custom draw layout elements. Review the Layout API document for more...
View ArticleHow to: Add Custom Elements to the Available Items Panel
By default, the Available Items Panel contains the following elements:- The New Group Box and New Tabbed Group items;- Items that were removed by a user in Customization Mode.To initially make certain...
View ArticleHow to: Use Vertical and Horizontal Layout Modes in NavBarControl
In NavBarControl, NavBarItems and NavBarGroups may be oriented horizontally and vertically. To control orientation of groups, use the NavBarViewBase.Orientation property. To change item orientation,...
View ArticleHow to: Store file attachments in the file system instead of the database
ScenarioThe FileSystemData module provides the FileSystemStoreObject and FileSystemLinkObject classes that implement the IFileData interface for the use with our File Attachments...
View ArticleHow to apply default filtering to master filters in ASPxDashboardViewer
The following example shows how to apply default filtering to master filter items using API of ASPxDashboardViewer. In this example, default filtering is applied to the following dashboard items.- The...
View ArticledxDataGrid - How to implement a custom store with CRUD operations (SQLite)
This example can be tested on a mobile device.The dxDataGrid binding using a CustomStore help topic and the A custom data source does not apply paging, filtering, sorting and grouping article describe...
View ArticleHow to: Manage Displayed Properties at the View Model/Model Level
The DataLayoutControl supports managing displayed properties at the data source level using attributes. It supports a large number of standard attributes from the System.ComponentModel.DataAnnotations...
View ArticleHow to: Customize the Way Properties Are Displayed by Handling...
Data Layout Control is a data-bound version of Layout Control, which automatically builds a layout to edit properties of a bound object. The generated layout can be customized by handling the following...
View ArticleGridView - How to implement a hotkey for inserting a predefined value to the...
The main idea is to handle the client-side KeyDown, event, check key code (please note that the MouseEvent/KeyboardEvent object has properties like altKey, ctrlKey and shiftKey). If a user has pressed...
View ArticleHow to: Allow Expanding Several Groups Simultaneously in NavBarControl Using...
ExplorerBarView is the only view in NavBarControl that supports expanding multiple groups at the same time. To use this view, specify it in the NavBarControl.View property.
View ArticleHow to improve performance when hiding ASPxDockPanels with large controls
Even when ASPxDockPanel is hidden, its content will be rendered on a page. The page will contain additional markup with invisible content. To improve performance in this scenario, it is necessary to...
View ArticleHow to: Create Closed (Hidden) Panels
The following example shows how to create closed (hidden) panels. To create closed panels, panel objects are added to the DockLayoutManager.ClosedPanels collection.In the example, the built-in Closed...
View ArticleHow to: Build a Layout of Controls within LayoutPanels
This example shows how to arrange controls within LayoutPanels forming a custom layout.In the example two LayoutPanels are created with controls arranged in a specific manner. Each control is wrapped...
View ArticleHow to: Create Floating Panels in XAML
The following example shows how to create floating panels.To create a floating panel: 1) A FloatGroup is added to the DockManager.FloatGroups collection 2) A LayoutPanel(s) is added to the created...
View ArticleHow to: Enable MDI Mode for a DocumentGroup
In this example, MDI mode is enabled for a DocumentGroup via the MDIStyle property. In this mode, the DocumentGroup's panels are represented as floating windows.
View ArticleHow to: Dock a Panel to Another Panel in Code
This example shows how to dock a panel in code using the methods provided by the DockLayoutManager.DockController object.In the Button1_Click event handler, a panel is docked to another panel forming a...
View ArticleHow to: Move a Layout Item in Code
This example shows how to programmatically move a layout item to another position. To move layout items, the DockLayoutManager.LayoutController.Move method is used. In the example, an item is moved on...
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 Article