beginUpdate()
Prevents the widget from refreshing until the endUpdate() method is called.
The beginUpdate() and endUpdate() methods prevent the widget from excessive updates when you are changing multiple widget settings at once. After the beginUpdate() method is called, the widget does not update its UI until the endUpdate() method is called.
See Also
defaultOptions(rule)
defaultOptions is a static method that the widget class supports. The following code demonstrates how to specify default options for all instances of the Pivot widget in an application executed on the desktop.
jQuery
DevExpress.ui.dxPivot.defaultOptions({ device: { deviceType: "desktop" }, options: { // Here go the Pivot options } });
Angular
import Pivot from "devextreme/ui/pivot"; // ... export class AppComponent { constructor () { Pivot.defaultOptions({ device: { deviceType: "desktop" }, options: { // Here go the Pivot options } }); } }
Vue
<template> <div> <dx-pivot id="pivot1" /> <dx-pivot id="pivot2" /> </div> </template> <script> import DxPivot from "devextreme-vue/pivot"; import Pivot from "devextreme/ui/pivot"; Pivot.defaultOptions({ device: { deviceType: "desktop" }, options: { // Here go the Pivot options } }); export default { components: { DxPivot } } </script>
React
import React from "react"; import dxPivot from "devextreme/ui/pivot"; import Pivot from "devextreme-react/pivot"; class App extends React.Component { render () { dxPivot.defaultOptions({ device: { deviceType: "desktop" }, options: { // Here go the Pivot options } }) return ( <div> <Pivot id="pivot1" /> <Pivot id="pivot2" /> </div> ) } } export default App;
dispose()
The following code disposes of an Pivot instance that corresponds to the element ID (or reference variable in Angular) and removes the element from the DOM:
jQuery
$("#myPivot").dxPivot("dispose"); $("#myPivot").remove();
Angular
<dx-pivot #pivotVar id="myPivot"></dx-pivot>
import { ..., ViewChild } from "@angular/core"; import { DxPivotComponent } from "devextreme-angular"; // ... export class AppComponent { @ViewChild("pivotVar") pivot: DxPivotComponent; removePivot (e) { this.pivot.instance.dispose(); document.getElementById("myPivot").remove(); } }
endUpdate()
Refreshes the widget after a call of the beginUpdate() method.
Main article: beginUpdate()
See Also
getDataSource()
Gets the DataSource instance.
See Also
- Call Methods: jQuery | Angular | AngularJS | Knockout | Vue | React | ASP.NET MVC
- Data Layer - Overview
- Data Layer - DataSource Examples
getInstance(element)
getInstance is a static method that the widget class supports. The following code demonstrates how to get the Pivot instance found in an element with the myPivot
ID:
// Modular approach import Pivot from "devextreme/ui/pivot"; ... let element = document.getElementById("myPivot"); let instance = Pivot.getInstance(element) as Pivot; // Non-modular approach let element = document.getElementById("myPivot"); let instance = DevExpress.ui.dxPivot.getInstance(element);
See Also
option()
See Also
- Get and Set Options
- Call Methods: jQuery | Angular | AngularJS | Knockout | Vue | React | ASP.NET MVC
option(optionName)
See Also
- Get and Set Options
- Call Methods: jQuery | Angular | AngularJS | Knockout | Vue | React | ASP.NET MVC
option(optionName, optionValue)
See Also
- Get and Set Options
- Call Methods: jQuery | Angular | AngularJS | Knockout | Vue | React | ASP.NET MVC
option(options)
See Also
- Get and Set Options
- Call Methods: jQuery | Angular | AngularJS | Knockout | Vue | React | ASP.NET MVC