ASPxComboBox: Two Different Methods to Create ToolTip for ComboBox Items
This example demonstrates how to create a ToolTip for each ComboBox item using two different methods. In both methods, ComboBox items are read from the database and converted from plain text to HTML...
View ArticleHow to implement a client-side confirmation on the user action modifying the...
This example demonstrates how drag-n-dropping and resizing appointment actions can be confirmed using client-side scripting technique. The ASPxScheduler client-side events AppointmentDrop and...
View ArticleAutoCorrect - How to capitalize the first letter of a word in a new sentence
This example illustrates how to capitalize the first letter of a word at the beginning of a sentence and after the period (.). We handle the RichEditControl.AutoCorrect Event for this purpose.
View ArticleHow to obtain a specific section content
This example illustrates how to obtain the content of a Section which the caret position belongs to. There is no direct method to obtain the section range. However, you can construct this range based...
View ArticleCreate a Mobile App in Visual Studio
This is the project that you will get if you go though the Create a Mobile App in Visual Studio tutorial.
View ArticleAutoCorrect - How to replace regular quotation marks with curly ones
This example illustrates how to replace regular quotation marks with curly ones during typing. We handle the RichEditControl.AutoCorrect Event for this purpose. The corresponding option is called...
View ArticleHow to remove standard items and add custom ones to the Ribbon toolbar and...
This example demonstrates how to customize the RibbonDocumentPreview control's Ribbon and RibbonStatusBar.In particular, it shows how you can remove a standard button from it and add custom ones.
View ArticleHow to show ASPxPopupControl on the ASPxGridView's CustomButton click
This example is an illustration of the How to show ASPxPopupControl on the ASPxGridView's CustomButton click KB Article. Refer to the Article for an explanation.
View ArticleASPxGridView - How to customize GroupSummary and TotalSummary rendering via...
This example illustrates how to get Summary Item values and change the default Summary rendering. Average values are calculated against the "Vote" column and are visualized via the ASPxProgressBar in...
View ArticleHow to filter resources in Scheduler via CheckBoxList
This is a counterpart of the How to filter resources in ASPxScheduler via ASPxListBox code example but for ASP.NET MVC platform. The implementation for this platform is quite different. As a starting...
View ArticleHow to drop an appointment from ASPxScheduler to an external control
This example illustrates how to drag and drop appointment info outside the ASPxScheduler area. The main difficulty of implementing this functionality is that the capability to drag appointments within...
View ArticleHow to implement a CheckComboBox editor in the ASPxGridView
This example is based on the CheckComboBox Emulation demo. It illustrates how to use a combination of the ASPxDropDownEdit and ASPxGridView to emulate a checked combo box that allows end-users to...
View ArticleHow to create a parameter of System.Enum type
This example demonstrates how you can define an enumeration as a report parameter of a custom type. To make this parameter type (in addition to standard System.Type types) available for your end-users...
View ArticleReport Storage for the End-User Report Designer
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 ArticleHow to colorize map contours loaded from Shapefiles using the Choropleth...
This example demonstrates how to paint each map contour in a specific color depending on GDP data from Shapefiles (Countries.dbf, Countries.shp).
View ArticleHow to filter appointments by custom field values
This example illustrates how to filter appointments by custom field values. A particular value is selected via the ASPxComboBox. In the ASPxClientComboBox.SelectedIndexChanged event handler this value...
View ArticleHow to cancel time-consuming operation from the WaitForm
This example illustrates how to cancel a time-consuming operation on a WaitForm. To accomplish this task, place a BackgroundWorker and SplashScreenManager onto a Form, and add the Cancel button in the...
View ArticleHow to serialize parameters of custom types
This example demonstrates the capability to provide XML serialization of custom parameter types.In particular, it shows how you can save a report, along with its parameters of the System.Enum type, to...
View ArticleHow to edit GridView data in a popup form
This example demonstrates how to switch a GridView to read-only mode and implement the Create, Update, Delete, and Insert operations in a popup form. In this example, you can also edit data after...
View ArticleHow to keep a detail ASPxGridView state after a master ASPxGridView was...
By default, the master grid doesn't save its detail grid's state after operations with data, such as sorting, grouping, filtering. Thus, it should be saved manually. To implement this feature, handle...
View Article