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 Resizable widget in an application executed on the desktop.
jQuery
DevExpress.ui.dxResizable.defaultOptions({ device: { deviceType: "desktop" }, options: { // Here go the Resizable options } });
Angular
import Resizable from "devextreme/ui/resizable"; // ... export class AppComponent { constructor () { Resizable.defaultOptions({ device: { deviceType: "desktop" }, options: { // Here go the Resizable options } }); } }
Vue
<template> <div> <dx-resizable id="resizable1" /> <dx-resizable id="resizable2" /> </div> </template> <script> import DxResizable from "devextreme-vue/resizable"; import Resizable from "devextreme/ui/resizable"; Resizable.defaultOptions({ device: { deviceType: "desktop" }, options: { // Here go the Resizable options } }); export default { components: { DxResizable } } </script>
React
import React from "react"; import dxResizable from "devextreme/ui/resizable"; import Resizable from "devextreme-react/resizable"; class App extends React.Component { render () { dxResizable.defaultOptions({ device: { deviceType: "desktop" }, options: { // Here go the Resizable options } }) return ( <div> <Resizable id="resizable1" /> <Resizable id="resizable2" /> </div> ) } } export default App;
dispose()
The following code disposes of an Resizable instance that corresponds to the element ID (or reference variable in Angular) and removes the element from the DOM:
jQuery
$("#myResizable").dxResizable("dispose"); $("#myResizable").remove();
Angular
<dx-resizable #resizableVar id="myResizable"></dx-resizable>
import { ..., ViewChild } from "@angular/core"; import { DxResizableComponent } from "devextreme-angular"; // ... export class AppComponent { @ViewChild("resizableVar") resizable: DxResizableComponent; removeResizable (e) { this.resizable.instance.dispose(); document.getElementById("myResizable").remove(); } }
endUpdate()
Refreshes the widget after a call of the beginUpdate() method.
Main article: beginUpdate()
See Also
getInstance(element)
getInstance is a static method that the widget class supports. The following code demonstrates how to get the Resizable instance found in an element with the myResizable
ID:
// Modular approach import Resizable from "devextreme/ui/resizable"; ... let element = document.getElementById("myResizable"); let instance = Resizable.getInstance(element) as Resizable; // Non-modular approach let element = document.getElementById("myResizable"); let instance = DevExpress.ui.dxResizable.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