Search Results: "wiki/RecentlyCommented" property
- All Results 1000
- Guides 25
- Reference 975
- Technical Demos
- Support Center
Grouping
the selector function and implement your own. Selector customization The data selector for fields whose dataType is number or date is configured using the groupInterval property. Grouping numbers To configure a data selector for numeric data, assign a number to the groupInterval property. The number assigned is the maximum length of each group. The bigger the number, the less the quantity
Platform-Specific Value Pickers
The DateBox provides the following controls for picking values. Calendar Available when the type property is set to "date" or "datetime". Rollers Available when the type property is set to "date", "time" or "datetime". List Available when the type property is set to "time". By default, the picking control and its appearance vary depending on the platform. If you need to force the use
Form Properties
the Form configuration at runtime, bind the property that should be changed to a component property: HTMLTypeScript <dx-form [(formData)]="employee" [disabled]="disableForm.value"> <...: [ // ... DxFormModule, DxCheckBoxModule ], // ... }) Vue To change the Form configuration at runtime, bind the property that should be changed to a component property
Visual Elements
a palette instead. A number of predefined palettes are available for this purpose. In addition, you can specify your own palette by assigning an array of colors to the palette property. The background color can be specified in addition to the bar color. The bar's background is the remaining segment of the bar's track. It can be colored using the backgroundColor property. Geometry and Arrangement You can
Show and Hide Using the API
"); // ==== or ==== $("#loadPanelContainer").dxLoadPanel("toggle", true); } }); }); Angular To show or hide the LoadPanel programmatically, bind the visible property of the LoadPanel UI component to a component property. After that, change this property, and the LoadPanel will appear or disappear. HTMLTypeScript <dx-load-panel [hideOnOutsideClick]="true" [(visible)]="isLoadPanelVisible