Search Results: Wikipedia API query 2010 edit statistics "2010: Odyssey Two" total edits year 2010
- All Results 1000
- Guides 332
- Reference 668
- Technical Demos
- Support Center
dxTooltip dxPopoverAnimation
hide An object that defines the animation properties used when the UI component is being hidden. show An object that defines the animation properties used when the UI component is being...
dxButtonGroup Configuration
: ButtonGroup; saveInstance (e) { this.buttonGroupInstance = e.component; } } Vue App.vue (Options API)App.vue (Composition API) <template> <div> <DxButtonGroup..., assign true to the rtlEnabled field of the object passed to the DevExpress.config(config) method. JavaScriptDevExpress.config({ rtlEnabled: true }); DataGrid Demo Navigation UI Demo Editors Demo
dxResizable Configuration
: Resizable; saveInstance (e) { this.resizableInstance = e.component; } } Vue App.vue (Options API)App.vue (Composition API) <template> <div> <DxResizable... to the DevExpress.config(config) method. JavaScriptDevExpress.config({ rtlEnabled: true }); DataGrid Demo Navigation UI Demo Editors Demo width Specifies the UI component's width. This property accepts a value
dxScrollView Configuration
"; // ... export class AppComponent { scrollViewInstance: ScrollView; saveInstance (e) { this.scrollViewInstance = e.component; } } Vue App.vue (Options API)App.vue (Composition API... to the DevExpress.config(config) method. JavaScriptDevExpress.config({ rtlEnabled: true }); DataGrid Demo Navigation UI Demo Editors Demo scrollByContent A Boolean value specifying whether or not an end
dxButton Configuration
is clicked or tapped. To validate the editors that are related to the validation group specified for this button, use the validationGroup field of the object passed as the event handler's parameter... Button from "devextreme/ui/data_grid"; // ... export class AppComponent { buttonInstance: Button; saveInstance (e) { this.buttonInstance = e.component; } } Vue App.vue (Options API