Data Source Wizard - How to customize the list of data providers
This example demonstrates how to modify the list of data providers available on the connection parameters configuration page of the Data Source Wizard when customizing the Data Source Wizard by...
View ArticleHow to customize connection settings before DashboardViewer connects to a...
This example demonstrates how to customize connection settings before the DashboardViewer connects to a database using the ConfigureDataConnection event.In this example, the dashboard's XML definition...
View ArticleHow to import a large data set using XPO efficiently within a transaction
When you are required to import a large data set into a database as XPO persistent objects, the straightforward approach might be inappropriate. Specifically, if you would create objects objects one by...
View ArticleHow to control the detail view layout on the web to avoid enormous gaps...
Scenario:When you have properties in your business class with captions of significantly different lengths, the detail view often looks awkward on the web. This happens because the built-in...
View ArticleHow to display a check box within column headers
This example demonstrates how to display a check box within column headers. If the check box is checked, the corresponding column is made read-only. Uncheck the check box to allow column values to be...
View ArticleOBSOLETE - How to show a specific view for some users
In this example it is demonstrated how to show a custom View against a role of the currently logged user. The custom views were created and customized in the Model Editor for each role separately. For...
View ArticleHow to implement an ability to drag tab headers outside the TabControl to...
In most modern web browsers, it’s possible to drag page headers outside the browser to create a separate external window. This example demonstrates how this functionality can be implemented for the...
View ArticleHow to highlight modified rows
The grid's data source is changed in the background. A modified grid row flashes and then fades out. Download the example, to learn how this functionality is implemented.See Also:How to change...
View ArticleHow to export a colored grid when the Data Aware export mode is used
This example demonstrated how to use the XlsxExportOptionsEx.CustomizeCell event to paint the exported GridView when the Data Aware export is used.To learn how to export colored GridView when the...
View ArticleHow to export colored GridView
This example demonstrated how to use the MVCxGridViewExportSettings.RenderBrick property to paint the exported GridView when the WYSIWYG export mode is used.To learn how to export colored GridView when...
View ArticleDiagramControl - How to create custom shapes with connection points
The Diagram control supports a special language for defining shapes. The main element that contains shape description is ShapeTemplate. This element describes a shape contour and may contain several...
View ArticleHow to implement the custom draw functionality for skinned dock panels
This example demonstrates how you can implement the CustomDrawDockPanelCaption event, to manually paint dock panels captions.Question CommentsAdded By: sivasubramanian at: 11/27/2013 10:11:04 PM...
View ArticleHow to build non-linear layout via LayoutControl
This example shows how to arrange items within a LayoutControl, forming a non-linear layout. To create a layout, items are combined into groups and the groups are combined into other groups.Various...
View ArticleHow to create a drill-down report in WPF
Starting with version v15.1, the drill-down functionality is available out of the box. Please see the Drill-Down Report module in the Reports for WPF demo application.See also: How to: Create...
View ArticleHow to use bricks of different types
The following example demonstrates how to use bricks of different types. The code listed in this example creates a report with images (represented by ImageBrick objects) and text (represented by...
View ArticleHow to: Use Bricks of Different Types
The following example demonstrates how to use bricks of different types to display different kinds of information in a report.First, drop a simple button onto a form and handle its Click event. In the...
View ArticleHow to calculate a master property based on values from a details collection
See the How to: Calculate a Property Value Based on Values from a Detail Collection help topic for more information.See Also:XPO Best PracticesHow to display details collections with descendant classes...
View ArticleHow to: Use Services Implementing the IDocumentManagerService Interface
Currently, our MVVM Framework includes a few services implementing the IDocumentManagerService interface: 1. DockingDocumentUIService2. FrameDocumentUIService3. TabbedDocumentUIService4....
View ArticleGet values from all cells that are shown at the same level as a clicked cell
You can use the GetCellValue(Object[] columnValues, Object[] rowValues, PivotGridField dataField); method to get a value from a cell by corresponding row and column field values. To iterate through the...
View ArticleHow to validate Captcha and submit model values using $.ajax
This example demonstrates how to implement Model and Captcha validation using $.ajax.The main idea is to use the jQuery serialize function to manually collect values from all inputs inside form. Then...
View Article