Tutorial - Creating a registration form using ASPxEditors
This solution is created to illustrate the steps described in the Creating a registration form using ASPxEditors. Introduction tutorial series.The solution consists of the following...
View ArticleHow to track changes made to persistent objects, and write them into a...
The OnSaving and OnDeleting method of the persistent objects can be overridden to log create/update/delete actions into a separate table. This example demonstrates the basic implementation of this...
View ArticleHow to create the "select all" check box dynamically
UPDATED:Starting with version v2014 vol 1 (v14.1), this functionality is available out of the box:S173621: ASPxGridView - Add the built-in SelectAll CheckBox for Command ColumnSimply set the...
View ArticleASPxGridLookup - How to implement the multiple selection DropDownWindow scenario
This example demonstrates how to use the ASPxGridLookup to select multiple values from a dropdown grid containing lookup items. The ASPxGridLookup is bound with the custom DataItem defined within the...
View ArticleHow to change themes on-the-fly
This sample illustrates a possibility to change themes on-the-fly. You can easily change all your pages' look and feel like in demos which come with our product. Please note that this demo's base class...
View ArticleHow to create detail grid with different sets of columns
This example demonstrates how to create a detail grid with different sets of columns.When DataControlDetailDescriptor is used to create a detail grid, all columns are synchronized. So, a detail grid...
View ArticleHow to serialize custom properties with a custom type using the...
This example demonstrates how to serialize and deserialize custom properties with a custom type. If a custom property is null when the deserialization process is invoked, it's necessary to handle the...
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 ArticleHow to show custom forms and controls in XAF (Example)
This example implements the following scenarios when an end-user clicks on a custom item in the navigation control:- a custom non-XAF form is opened as a result;- a standard XAF View containing a...
View ArticleHow to edit a dictionary with PropertyGridControl
To edit a dictionary with PropertyGridControl, you can create a DictionaryWrapper class that implements the ICustomTypeDescriptor interface. The DictionaryWrapper’s GetProperties method should return...
View ArticleHow to implement Metro Navigation Style
This example is actually only for versions 12.2 and lower. In 13.1, we introduced the NavigationFrame control, providing a similar functionality out of the box. See How To: Use NavigationButtons to...
View ArticleHow to apply sorting by Summary along with sorting by the Column.
This example shows how to sort group summary items along with the column that the summary is aligned with.To add this functionality, you can use the proposed helper class (GroupSummaryOptions) in your...
View ArticleHow to create a chart control with a scrollable legend
This example illustrates how to create a chart control with a scrollable legend. This may be required, for instance, when a chart displays too many series, or a legend occupies too much space.Question...
View ArticleHow to configure dxDataGrid with Angular Approach
This example demonstrates how to display data from a data source in dxDataGrid created using the AngularJS approach.See also:Configure Widget - Angular ApproachQuestion CommentsAdded By: Marion...
View ArticleAdvanced Banded View Layout with attached behavior
Update:Starting with version 13.1, we implemented banded grid support out of the box. See the Using Bands to Create Multi-Row Layout article and the E4625 - How to: Create a Banded View example for...
View ArticleHow to implement the Drag&Drop functionality for the CardView
We have created an example demonstrating how to implement the Drag&Drop functionality for the CardView.This functionality is encapsulated in the CardDragDropManager class. So, all you need to do is...
View ArticleHow to make GridControl immediately save changes in a cell after editing
This example shows how to update GridControl's data source right after a cell editor value has been changed. To implement this scenario, we created a custom helper class exposing the...
View ArticleHow to post values to the DXGrid DataSource immediately after changing a cell...
To post values immediately, subscribe to the CellValueChanging event and call the View.PostEditor method.If you don't want to handle events, check the E4155 - How to make GridControl immediately save...
View ArticleDataEditors - How to localize data items based on the current culture
By default, our extensions don't provide any specific method for this scenario. However, it's possible to accomplish this task by creating a special helper method which will take an original text as a...
View ArticleHow to use HtmlEditor for editing GridView data
This example demonstrates how to use HtmlEditor to edit GridView row dataQuestion CommentsAdded By: md imran at: 11/18/2013 5:20:50 AM please can you give me the full project and i want to edit and...
View Article