DXRichEdit for WPF: How to use RichEdit converters to bind a RichEditControl...
This example illustrates how to use SpecificFormatToContentConverter and ContentToSpecificFormatConverter to setup binding between RichEditControl content and other DependencyProperty of a specific...
View ArticleHow to display the dxChart widget in an XAF view
Scenario:It is necessary to show a chart control with a lot of points. The built-in Charts module draws all points on the same screen at once, which may be inconvenient for an end-user. To achieve...
View ArticleHow to show a ToolTip containing information about the document layout...
This example demonstrates how to use the HitTestManager class to obtain document layout elements located under the specific point and show this information in the ToolTip.Use the HitTestManager.HitTest...
View ArticleHow to display a ToolTip when hovering with the mouse over a particular word
Firstly, you should Obtain the Document Position under the Mouse Cursor. Then, utilize the SubDocument.GetText Method to get a text within specified ranges several times until this text represents a...
View ArticleHow to show simple HTML text in cells
This sample illustrates how to implement a custom editor to visualize simple HTML. You can use HTML tags (e.g. <b>, <i>, <u>, <s>, <href>) to make your text more...
View ArticleASPxDashboardDesigner - How to save dashboards to a data base
This example shows how to create a custom dashboard storage that allows storing dashboards in a data base. It uses the System.Data.SqlClient members to connect and operate an MS SQL server data base. A...
View ArticleHow to isolate extension settings into separate helper class and share a...
This example is more specific to ASP.NET MVC platform rather than to our extensions. It illustrates two popular techniques which can be used with any extensions (we chose a GridView extension for this...
View ArticleHow to apply format conditions to pivot grid data cells
This example shows how to add format conditions to WPF Pivot Grid Control.The Data Bar conditional formatting is applied to the 'Extended Price' measure and intersection of the 'Sales Person' and...
View ArticleHow to: Apply Filter to a Field
This example shows how to apply a filter to a field. For this, a new FilterFieldValues method was created. The first condition will select records which contain 'UK' in the 'fieldCountry' field. The...
View ArticleHow to hide ASPxGridView's SelectionCheckBox for particular row
This example is based on the How to use ASPxCheckBox in DataItemTemplate to emulate a selection example. It illustrate how to emulate the ASPxGridView's SelectionCheckBox and hide it for particular...
View ArticleHow to implement scrolling within GridView
This sample demonstrates how to dynamically enable the GridView's vertical and horizontal scrolling.Question CommentsAdded By: Chad at: 7/6/2016 1:35:30 PM Can someone please update this for 14.2.13...
View ArticleHow to integrate the Web Report Designer into an MVC web application
This example demonstrates how you can integrate the Web Report Designer into your web application. The application contains a simple report catalog, allowing you to add, delete, and edit reports whose...
View ArticleHow to export the colored ASPxGridView
UPDATED:Starting with version v2015 vol 2 (v15.2), this functionality is available out of the box. Use ASPxGridView.FormatCondition rules to define conditional formatting in Browse Mode and keep the...
View ArticleHow to call an Action method via a custom button and pass a row's key as a...
- Define a custom button via the GridViewSettings.CommandColumn.CustomButtons collection; - Customize the client-side CustomButtonClick event handler via 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.Question CommentsAdded By: Ty Yanushka at: 7/7/2016 2:24:18 PM For those...
View ArticleASPxGridView - How to edit multiple selected rows in a single Edit Form
This example demonstrates how the grid's standard Edit Form can be used to input and apply identical values to all selected grid rows.See Also:ASPxGridView - Multi-Row EditingQuestion CommentsAdded By:...
View ArticleGridView - How to show a message after CRUD operations
This example illustrates how to show a custom message after performing CRUD operations:- Handle a particular Action method on the Controller side and save the related data/message via a custom ViewData...
View ArticleCustomFieldValueCells: Hide rows or columns with Grand Total values equal to 0
It is necessary to handle the CustomFieldValueCells event to accomplish this task. See Also: How to hide particular rows and columnsQuestion CommentsAdded By: Vijay Macha at: 7/12/2016 12:38:10 AM...
View ArticleHow to implement a Distinct Count Aggregation Function that supports the...
This example demonstrates how to define and register the Distinct Count function that allows calculating the count of unique field values if the Server Mode is enabled. This concept is described in the...
View ArticleHow to programmatically export a report in an ASP.NET application
This example demonstrates how to export an XtraReport instance in an ASP.NET application via the Response.BinaryWrite() method. First, in the Default.aspx page, you should select the export file format...
View Article