Methods
beginUpdate()
Postpones rendering that can negatively affect performance until the endUpdate() method is called.
defaultOptions(rule)
Name | Type | Description |
---|---|---|
device | | |
Device parameters. |
options |
Options to be applied. |
defaultOptions is a static method that the UI component class supports. The following code demonstrates how to specify default properties for all instances of the DateRangeBox UI component in an application executed on the desktop.
jQuery
DevExpress.ui.dxDateRangeBox.defaultOptions({ device: { deviceType: "desktop" }, options: { // Here go the DateRangeBox properties } });
Angular
import DateRangeBox, { Properties } from "devextreme/ui/date_range_box"; // ... export class AppComponent { constructor () { DateRangeBox.defaultOptions<Properties>({ device: { deviceType: "desktop" }, options: { // Here go the DateRangeBox properties } }); } }
Vue
<template> <div> <DxDateRangeBox id="dateRangeBox1" /> <DxDateRangeBox id="dateRangeBox2" /> </div> </template> <script> import DxDateRangeBox from "devextreme-vue/date-range-box"; import DateRangeBox from "devextreme/ui/date_range_box"; DateRangeBox.defaultOptions({ device: { deviceType: "desktop" }, options: { // Here go the DateRangeBox properties } }); export default { components: { DxDateRangeBox } } </script>
React
import dxDateRangeBox from "devextreme/ui/date_range_box"; import DateRangeBox from "devextreme-react/date-range-box"; dxDateRangeBox.defaultOptions({ device: { deviceType: "desktop" }, options: { // Here go the DateRangeBox properties } }); export default function App() { return ( <div> <DateRangeBox id="dateRangeBox1" /> <DateRangeBox id="dateRangeBox2" /> </div> ) }
dispose()
After calling this method, remove the DOM element associated with the UI component:
$("#myDateRangeBox").dxDateRangeBox("dispose"); $("#myDateRangeBox").remove();
Use this method only if the UI component was created with jQuery or pure JavaScript. In Angular, Vue, and React, use conditional rendering:
Angular
<dx-date-range-box ... *ngIf="condition"> </dx-date-range-box>
Vue
<template> <DxDateRangeBox ... v-if="condition"> </DxDateRangeBox> </template> <script> import DxDateRangeBox from 'devextreme-vue/date-range-box'; export default { components: { DxDateRangeBox } } </script>
React
import React from 'react'; import DateRangeBox from 'devextreme-react/date-range-box'; function DxDateRangeBox(props) { if (!props.shouldRender) { return null; } return ( <DateRangeBox ... > </DateRangeBox> ); } class App extends React.Component { render() { return ( <DxDateRangeBox shouldRender="condition" /> ); } } export default App;
See Also
getButton(name)
Gets an instance of a custom action button.
Use the returned button instance to call the Button UI component's methods, for example, focus():
jQuery
const myCustomButton = $("#dateRangeBoxContainer").dxDateRangeBox("getButton", "myCustomButton"); myCustomButton.focus();
Angular
import { Component, ViewChild } from '@angular/core'; import { DxDateRangeBoxComponent } from 'devextreme-angular'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent { @ViewChild('dateRangeBoxRef', { static: false }) dateRangeBox: DxDateRangeBoxComponent; // Prior to Angular 8 // @ViewChild('dateRangeBoxRef') dateRangeBox: DxDateRangeBoxComponent; setFocus() { this.dateRangeBox.instance.getButton('myCustomButton').focus(); } }
<dx-date-range-box #dateRangeBoxRef ... > </dx-date-range-box>
Vue
<template> <DxDateRangeBox ... :ref="dateRangeBoxRef"> </DxDateRangeBox> </template> <script> import 'devextreme/dist/css/dx.light.css'; import DxDateRangeBox from 'devextreme-vue/date-range-box'; export default { components: { DxDateRangeBox }, data() { return { dateRangeBoxRef } }, methods: { setFocus() { this.dateRangeBox.getButton('myCustomButton').focus(); } }, computed: { dateRangeBox: function() { return this.$refs[dateRangeBoxRef].instance; } } } </script>
React
import React from 'react'; import 'devextreme/dist/css/dx.light.css'; import DateRangeBox from 'devextreme-react/date-range-box'; class App extends React.Component { constructor(props) { super(props); this.dateRangeBoxRef = React.createRef(); this.setFocus = () => { this.dateRangeBox.getButton('myCustomButton').focus(); }; } get dateRangeBox() { return this.dateRangeBoxRef.current.instance; } render() { return ( <DateRangeBox ... ref={this.dateRangeBoxRef}> </DateRangeBox> ); } } export default App;
getInstance(element)
getInstance is a static method that the UI component class supports. The following code demonstrates how to get the DateRangeBox instance found in an element with the myDateRangeBox
ID:
// Modular approach import DateRangeBox from "devextreme/ui/date_range_box"; ... let element = document.getElementById("myDateRangeBox"); let instance = DateRangeBox.getInstance(element) as DateRangeBox; // Non-modular approach let element = document.getElementById("myDateRangeBox"); let instance = DevExpress.ui.dxDateRangeBox.getInstance(element);
See Also
registerKeyHandler(key, handler)
A handler. Accepts the keydown event as the argument. It is a EventObject or a jQuery.Event when you use jQuery.
The key argument accepts one of the following values:
- "backspace"
- "tab"
- "enter"
- "escape"
- "pageUp"
- "pageDown"
- "end"
- "home"
- "leftArrow"
- "upArrow"
- "rightArrow"
- "downArrow"
- "del"
- "space"
- "F"
- "A"
- "asterisk"
- "minus"
A custom handler for a key cancels the default handler for this key.
See Also
If you have technical questions, please create a support ticket in the DevExpress Support Center.
We appreciate your feedback.