Vue DateRangeBox Methods
beginUpdate()
Postpones rendering that can negatively affect performance until the endUpdate() method is called.
The beginUpdate() and endUpdate() methods reduce the number of renders in cases where extra rendering can negatively affect performance.
See Also
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> ) }
You can also set rules for multiple device types:
jQuery
const devicesConfig = [ { deviceType: 'desktop' }, { deviceType: 'tablet' }, { deviceType: 'phone' }, ]; devicesConfig.forEach(deviceConfig => { DevExpress.ui.dxDateRangeBox.defaultOptions({ device: deviceConfig, options: { // Here go the DateRangeBox properties } }); });
Angular
import DateRangeBox, { Properties } from "devextreme/ui/date_range_box"; // ... export class AppComponent { constructor () { const devicesConfig = [ { deviceType: 'desktop' }, { deviceType: 'tablet' }, { deviceType: 'phone' }, ]; devicesConfig.forEach(deviceConfig => { DateRangeBox.defaultOptions<Properties>({ device: deviceConfig, options: { // Here go the DateRangeBox properties } }); }); } }
Vue
<template> <div> <DxDateRangeBox /> </div> </template> <script> import DxDateRangeBox from "devextreme-vue/date-range-box"; import DateRangeBox from "devextreme/ui/date_range_box"; const devicesConfig = [ { deviceType: 'desktop' }, { deviceType: 'tablet' }, { deviceType: 'phone' }, ]; devicesConfig.forEach(deviceConfig => { DateRangeBox.defaultOptions({ device: deviceConfig, 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"; const devicesConfig = [ { deviceType: 'desktop' }, { deviceType: 'tablet' }, { deviceType: 'phone' }, ]; devicesConfig.forEach(deviceConfig => { dxDateRangeBox.defaultOptions({ device: deviceConfig, options: { // Here go the DateRangeBox properties } }); }); export default function App() { return ( <div> <DateRangeBox /> </div> ) }
dispose()
jQuery
After calling this method, remove the DOM element associated with the UI component:
$("#myDateRangeBox").dxDateRangeBox("dispose"); $("#myDateRangeBox").remove();
Angular
Use conditional rendering instead of this method:
<dx-date-range-box ... *ngIf="condition"> </dx-date-range-box>
Vue
Use conditional rendering instead of this method:
<template> <DxDateRangeBox ... v-if="condition"> </DxDateRangeBox> </template> <script> import DxDateRangeBox from 'devextreme-vue/date-range-box'; export default { components: { DxDateRangeBox } } </script>
React
Use conditional rendering instead of this method:
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;
endUpdate()
Refreshes the UI component after a call of the beginUpdate() method.
The beginUpdate() and endUpdate() methods reduce the number of renders in cases where extra rendering can negatively affect performance.
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
on(eventName, eventHandler)
Use this method to subscribe to one of the events listed in the Events section.
See Also
on(events)
Use this method to subscribe to several events with one method call. Available events are listed in the Events section.
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
repaint()
Renders the component again without reloading data. Use the method to update the component's markup and appearance dynamically.
The repaint()
method re-initializes the component with new settings, resetting its state and history.
See Also
- reload() in DataSource | List
- refresh() in DataGrid | TreeList
If you have technical questions, please create a support ticket in the DevExpress Support Center.