beginUpdate()
Prevents the UI component from refreshing until the endUpdate() method is called.
The beginUpdate() and endUpdate() methods prevent the UI component from excessive updates when you are changing multiple UI component settings at once. After the beginUpdate() method is called, the UI component does not update its UI until the endUpdate() method is called.
See Also
defaultOptions(rule)
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 TagBox UI component in an application executed on the desktop.
jQuery
DevExpress.ui.dxTagBox.defaultOptions({ device: { deviceType: "desktop" }, options: { // Here go the TagBox properties } });
Angular
import TagBox from "devextreme/ui/tag_box"; // ... export class AppComponent { constructor () { TagBox.defaultOptions({ device: { deviceType: "desktop" }, options: { // Here go the TagBox properties } }); } }
Vue
<template> <div> <DxTagBox id="tagBox1" /> <DxTagBox id="tagBox2" /> </div> </template> <script> import DxTagBox from "devextreme-vue/tag-box"; import TagBox from "devextreme/ui/tag_box"; TagBox.defaultOptions({ device: { deviceType: "desktop" }, options: { // Here go the TagBox properties } }); export default { components: { DxTagBox } } </script>
React
import React, {useEffect} from "react"; import dxTagBox from "devextreme/ui/tag_box"; import TagBox from "devextreme-react/tag-box"; export default function App() { useEffect(() => { dxTagBox.defaultOptions({ device: { deviceType: "desktop" }, options: { // Here go the TagBox properties } }) }); return ( <div> <TagBox id="tagBox1" /> <TagBox id="tagBox2" /> </div> ) }
dispose()
After calling this method, remove the DOM element associated with the UI component:
$("#myTagBox").dxTagBox("dispose"); $("#myTagBox").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-tag-box ... *ngIf="condition"> </dx-tag-box>
Vue
<template> <DxTagBox ... v-if="condition"> </DxTagBox> </template> <script> import DxTagBox from 'devextreme-vue/tag-box'; export default { components: { DxTagBox } } </script>
React
import React from 'react'; import TagBox from 'devextreme-react/tag-box'; function DxTagBox(props) { if (!props.shouldRender) { return null; } return ( <TagBox ... > </TagBox> ); } class App extends React.Component { render() { return ( <DxTagBox 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 = $("#tagBoxContainer").dxTagBox("getButton", "myCustomButton"); myCustomButton.focus();
Angular
import { Component, ViewChild } from '@angular/core'; import { DxTagBoxComponent } from 'devextreme-angular'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent { @ViewChild('tagBoxRef', { static: false }) tagBox: DxTagBoxComponent; // Prior to Angular 8 // @ViewChild('tagBoxRef') tagBox: DxTagBoxComponent; setFocus() { this.tagBox.instance.getButton('myCustomButton').focus(); } }
<dx-tag-box #tagBoxRef ... > </dx-tag-box>
Vue
<template> <DxTagBox ... :ref="tagBoxRef"> </DxTagBox> </template> <script> import 'devextreme/dist/css/dx.light.css'; import DxTagBox from 'devextreme-vue/tag-box'; export default { components: { DxTagBox }, data() { return { tagBoxRef } }, methods: { setFocus() { this.tagBox.getButton('myCustomButton').focus(); } }, computed: { tagBox: function() { return this.$refs[tagBoxRef].instance; } } } </script>
React
import React from 'react'; import 'devextreme/dist/css/dx.light.css'; import TagBox from 'devextreme-react/tag-box'; class App extends React.Component { constructor(props) { super(props); this.tagBoxRef = React.createRef(); this.setFocus = () => { this.tagBox.getButton('myCustomButton').focus(); }; } get tagBox() { return this.tagBoxRef.current.instance; } render() { return ( <TagBox ... ref={this.tagBoxRef}> </TagBox> ); } } export default App;
getDataSource()
Gets the DataSource instance.
See Also
- Call Methods: Angular | Vue | React | jQuery | AngularJS | Knockout
- Data Layer - Overview
- Data Layer - DataSource Examples
getInstance(element)
getInstance is a static method that the UI component class supports. The following code demonstrates how to get the TagBox instance found in an element with the myTagBox
ID:
// Modular approach import TagBox from "devextreme/ui/tag_box"; ... let element = document.getElementById("myTagBox"); let instance = TagBox.getInstance(element) as TagBox; // Non-modular approach let element = document.getElementById("myTagBox"); let instance = DevExpress.ui.dxTagBox.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.