GridView - How to display different controls in different cells of a specific...
Here is an MVC version of the E5130 - ASPxGridView - How to display different controls in different cells of the specific column code example.See Also:E3979 - GridView - How to track changes made with...
View ArticleASPxFileManager - How to implement a custom document management for different...
This example is a combination of the Custom Document Management in Rich Text Editor and Custom Document Management in Spreadsheet demo modules. In addition, some extra file formats are supported (.jpg,...
View ArticleHow to change the Grid's height according to the total height of its rows
The size of each GridView's element is calculated by the GridViewInfo class. The instance of the GridViewInfo class, containing information about a specific GridView instance, can be obtained via the...
View ArticleTabbedView - How to convert the default layout to a table one.
This example demonstrates how the default layout of TabbedView can be converted to a table layout using the FreeLayoutMode feature.
View ArticleHow to create a simple layout of dock panes
This example shows how to create a simple docking application. The application contains the following dock panels: - Toolbox represents a regular dock panel, docked to the left. - Properties is an...
View ArticleASPxComboBox - How to change a color of text for certain items
This example illustrates how to customize a style for each item. Since the color is changed for an HTML element, it is necessary to synchronize this settings on each round-trip to the server. For this,...
View ArticleHow to create a complex layout of dock panels
This example shows how to create a complex layout of dock panels, by combining the panels into LayoutGroups. The following Layout Groups are created: - RootGroup (arranges LayoutGroup1 and LayoutGroup3...
View ArticleHow to create a DocumentGroup with two tabs
This example shows how to create a DocumentGroup with two tabs, represented by DocumentPanel objects.
View ArticleHow to show the Filter Panel on top
This example illustrates how to show the Filter Panel on top.
View ArticleDrag & Drop - Copying rows instead of moving them when the CTRL key is pressed
This example demonstrates how to allow a user to copy dragged rows on the modifier key press. A custom attached property is used to determine whether or not the user wants to copy rows. You can adjust...
View ArticleDashboardDesigner - How to customize data source wizard to display only...
This example demonstrates how to use the DashboardDesigner.DataSourceWizardCustomization to replace the default pages of the data source wizard with custom...
View ArticleHow to work with referenced properties via a simple drop down list instead of...
See the How to work with referenced properties via a simple drop down list instead of the standard LookupPropertyEditor KB article for more information.Question CommentsAdded By: Carlitos at: 8/18/2012...
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 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 create auto-hidden panels
This example shows how to create auto-hidden panels in XAML.To create auto-hidden panels: 1) AutoHideGroup objects are added to the DockManager.AutoHideGroups collection. 2) Panels are added to the...
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 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 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 create MVVM-style Dock UI using IMVVMDockingProperties interface
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