How to generate properties in PropertyGridControl from a collection
To generate properties from a collection, assign the collection to the PropertyDefinitionsSource property. To determine what property definitions will be generated, use the PropertyDefinitionTemplate...
View ArticleHow to use TypeConverter in PropertyGridControl
TypeConverter allows converting values from one type to another. For example, you can convert a string entered into an editor to a custom type. To use TypeConverter, assign it as an attribute to a...
View ArticleHow to delay filtering when text is typed into AutoFilterRow
To make a delay in filtering with AutoFilterRow, it is necessary to create an attached DelayTime property and its default value to 0. When the DelayTime property value is changed and a new value is...
View ArticleHow To: Implement Sorting for a Custom Cell Value
In the current version, PivotGridControl doesn't support sorting by summary values, replaced in the PivotGridControl.CustomCellValue event. It's because PivotGridControl first filters, groups and sorts...
View ArticleHow to track progress of server side processing on the client side (using...
This example demonstrates one of many possible scenarios when a client should be notified of the progress of a server process. Web methods allow you to make a request from the client and return...
View ArticleHow to display progress information about server-side callback processing
Sometimes a server-side operation, which is initiated via a callback request sent by the ASPxCallback control, may take much time (for instance, when a lot of data is obtained and being processed on...
View ArticleHow to track progress of server side processing on the client side (using...
This example demonstrates one of many possible scenarios when a client should be notified of the progress of a server process. The sample includes a class declaration of a custom HttpHandler; the...
View ArticleHow to track progress of server side processing on the client side (using...
This example demonstrates an alternative way of how to track server-side processing. In this example, a custom HttpModule is used instead of HttpHandler as demonstrated in the How to track progress of...
View ArticleHow to bind ASPxFormLayout to XpoDataSource
This is a simple example of how to bind the ASPxFormLayout to an XpoDataSource (eXpress Persistent Objects) for data displaying and editing. It's implemented according to the How to use XPO in an...
View ArticleHow to apply master filtering in ASPxDashboardViewer
The following example demonstrates how to apply master filtering in ASPxDashboardViewer on the client side.In this example, the ASPxClientDashboardViewer.SetMasterFilter method is used to select...
View ArticleHow to implement filtering of TreeListControl that shows filtered items and...
This sample shows how to implement filtering of TreeListControl that shows filtered items and all their parent items.Question CommentsAdded By: perspectiv_developer at: 10/2/2014 1:00:22 AM Does...
View ArticleHow to use WCF Data Services to bind GridView Extension to data
This example demonstrates how to use WCF Data Services to load data to the GridView Extension in a database server mode. Data is loaded by using the WcfServerModeSource component.
View ArticleHow to prevent the PopupContainerControl from being hidden
To accomplish your task, you need to use a regular form with the TopMost option enabled. In this case, you can manually specify when the form should be hidden. For more information, please see the...
View ArticleHow to implement an MS Word-like Mini Toolbar in RichEditControl
This example demonstrates how to implement the MS Word-like Mini Toolbar feature using a RibbonMiniToolbar component. It is a popup toolbar, whose transparency depends on the distance from the mouse...
View ArticleHow to resize rows in GridControl dynamically using a splitter
To make the row height resizable, perform these steps:1. Create a control class that describes the IResizeHelperOwner interface.2. Create an attached RowHeight property, add it to this class and assign...
View ArticleAn example of a master-detail ASPxGridView with more than one detail level
An example of a master-detail ASPxGridView with more than one detail level This example demonstrates how to create a three-level master-detail grid: Suppliers -> Products -> Orders.See...
View ArticleASPxComboBox - How to implement search box functionality
This example demonstrates how to implement search box functionality.
View ArticleHow to export ASPxSpreadsheet to PDF using WorkBook component
This example demonstrates how to export data to PDF using our non-visual Workbook component.
View ArticleHow to export MVC Spreadsheet Extension to PDF using WorkBook component
This example demonstrates how to export data to PDF using our non-visual Workbook component.
View ArticleHow to group tree list columns in bands in the same manner as in...
NOTE: This example illustrates an approach to showing bands in a general way. This approach is not adapted by different TreeList features and printing/exporting. It cannot be easily extended to support...
View Article