WinForms End-User Designer - How to customize the Chart Wizard
This example demonstrates how to implement a custom Chart Wizard in the End-User Report Designer. In this example, we replace the default wizard logo with a custom one. To achieve this, create a custom...
View ArticleWinForms End-User Designer - How to resize the Parameters panel
This example demonstrates how to size the Parameters panel in the End-User Report Designer.For more information, see How to change the Parameter's panel width in a report print preview.
View ArticleHow to rotate a diagram to avoid segment shifting
If a series point value is changed, you may wish to keep an old start segment position. It is possible to use the PieSeries2D.Rotation property for this task.
View ArticleHow to dynamically generate a report in a WPF application
This example illustrates the process of creating a report in code in a WPF application. The following steps are essential to create a report layout:1. Create a report instance and bind it to data.2....
View ArticleWPF End-User Report Designer - How to Implement a Report Storage
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 ArticleWPF End-User Report Designer - How to hide a property in the Properties window
This example demonstrates how to hide the "DataSource", "DataMember", and "DataAdapter" properties in the Properties window. First, get the Property Grid from the visual tree. I completed this by using...
View ArticleWPF End-User Report Designer - How to customize the Ribbon toolbar
This example demonstrates how add two custom items to the Ribbon toolbar of the Banded End-User Report Designer. These custom items allows you to manage the designer's side panel's and toolbox's...
View ArticleWPF End-User Report Designer - How to create a custom data source wizard
This example demonstrates how to create a dialog that allows end-users create a new report and customize its Data Source in the WPF Report Designer.I used the DevExpress MVVM Framework and...
View ArticleWPF End-User Report Designer - How to customize the popup menu of a report
This example demonstrates how to extend the WPF Report Designer's popup menu with an extra "Show / Hide Grid Lines" menu item which is linked to the XtraReport.DrawGrid property.The main point is to...
View ArticleRuntime table creation best practices (iterative approach)
This example demonstrates the differences in runtime table creation between the newest XtraReports version and its prior versions.Please note that it is always required to call the XRTable.BeginInit...
View ArticleASPxGridView - How to save selected rows to the database by using WebMethods
This example shows how to save and retrieve selection state of the row. It is realized by using WebMethods. On page loading, selection state is retrieved from the database and ASPxGridView rows are...
View ArticleHow to preview a report in an ASP.NET MVC application
This sample demonstrates a simple ASP.NET MVC application that contains a static report and shows its print preview on the Web page.See also:How to create a report dynamically in the ASP.NET MVC...
View ArticleASPxGridView - How to implement cascading comboboxes in Batch Edit mode by...
This example shows how to implement cascading comboboxes in EditingSettings "Batch" mode by using WebMethods. Example is based on ASPxGridView - How to implement cascading comboboxes in Batch Edit mode...
View ArticleHow Insert, Update and Delete ASPxGridView's records with buttons
To change ASPxGridView's data from the client side, there are appropriate ASPxClientGrid methods:AddNewRowDeleteRowStartEditRowTo save or cancel changes, there are:UpdateEditCancelEditThe following...
View ArticleHow to populate a cascading ASPxComboBox by using WebMethods
This example explains how to populate a cascading ASPxComboBox by using WebMethods. On the client side, the master ASPxComboBox is subscribed to the SelectedIndexChanged event. When the event is...
View ArticleHow to generate a sequential and user-friendly identifier field within an XPO...
ScenarioOrders, articles or other business entities often require that you have user-friendly Id or Code fields that end-users can memorize and use during phone conversations. They are usually...
View ArticleHow to define a custom Filter Popup allowing to add custom toolbar buttons
To accomplish this task, define a custom PivotGridField.HeaderTemplate. In the attached solution, this template is defined in the MainWindow.xaml file. The custom functionality is implemented in the...
View ArticleHow to make the auto filter row's filter accent insensitive
This example demonstrates how to create a custom function that removes all diacritic symbols from the specified string value. Using the GridView.SubstituteFilter event, this function can be injected...
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 show an error message when a record cannot be deleted
This example demonstrates how to show an error message when an attempt to delete a record is cancelled by the RowDeleting event handler.Question CommentsAdded By: Rabab Siblini at: 3/16/2016 11:18:39...
View Article