assignResourceToTask(resourceKey, taskKey)
- import React from 'react';
- import 'devextreme/dist/css/dx.light.css';
- import Gantt from 'devextreme-react/gantt';
- class App extends React.Component {
- constructor(props) {
- super(props);
- this.ganttRef = React.createRef();
- this.yourCustomMethod = () => {
- this.gantt.assignResourceToTask("resource_key","task_key");
- // ...
- }
- }
- get gantt() {
- return this.ganttRef.current.instance;
- }
- render() {
- return (
- <Gantt ...
- ref={this.ganttRef}>
- </Gantt>
- );
- }
- }
- export default App;
See Also
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 Gantt UI component in an application executed on the desktop.
- import React, {useEffect} from "react";
- import dxGantt from "devextreme/ui/gantt";
- import Gantt from "devextreme-react/gantt";
- export default function App() {
- useEffect(() => {
- dxGantt.defaultOptions({
- device: { deviceType: "desktop" },
- options: {
- // Here go the Gantt properties
- }
- })
- });
- return (
- <div>
- <Gantt id="gantt1" />
- <Gantt id="gantt2" />
- </div>
- )
- }
deleteDependency(key)
- import React from 'react';
- import 'devextreme/dist/css/dx.light.css';
- import Gantt from 'devextreme-react/gantt';
- class App extends React.Component {
- constructor(props) {
- super(props);
- this.ganttRef = React.createRef();
- this.yourCustomMethod = () => {
- this.gantt.deleteDependency("dependency_key");
- // ...
- }
- }
- get gantt() {
- return this.ganttRef.current.instance;
- }
- render() {
- return (
- <Gantt ...
- ref={this.ganttRef}>
- </Gantt>
- );
- }
- }
- export default App;
See Also
deleteResource(key)
- import React from 'react';
- import 'devextreme/dist/css/dx.light.css';
- import Gantt from 'devextreme-react/gantt';
- class App extends React.Component {
- constructor(props) {
- super(props);
- this.ganttRef = React.createRef();
- this.yourCustomMethod = () => {
- this.gantt.deleteResource("resource_key");
- // ...
- }
- }
- get gantt() {
- return this.ganttRef.current.instance;
- }
- render() {
- return (
- <Gantt ...
- ref={this.ganttRef}>
- </Gantt>
- );
- }
- }
- export default App;
See Also
deleteTask(key)
- import React from 'react';
- import 'devextreme/dist/css/dx.light.css';
- import Gantt from 'devextreme-react/gantt';
- class App extends React.Component {
- constructor(props) {
- super(props);
- this.ganttRef = React.createRef();
- this.yourCustomMethod = () => {
- this.gantt.deleteTask("task_key");
- // ...
- }
- }
- get gantt() {
- return this.ganttRef.current.instance;
- }
- render() {
- return (
- <Gantt ...
- ref={this.ganttRef}>
- </Gantt>
- );
- }
- }
- export default App;
See Also
dispose()
After calling this method, remove the DOM element associated with the UI component:
- $("#myGantt").dxGantt("dispose");
- $("#myGantt").remove();
Use this method only if the UI component was created with jQuery or pure JavaScript. In Angular, Vue, and React, use conditional rendering:
- import React from 'react';
- import Gantt from 'devextreme-react/gantt';
- function DxGantt(props) {
- if (!props.shouldRender) {
- return null;
- }
- return (
- <Gantt ... >
- </Gantt>
- );
- }
- class App extends React.Component {
- render() {
- return (
- <DxGantt shouldRender="condition" />
- );
- }
- }
- export default App;
See Also
getDependencyData(key)
- import React from 'react';
- import 'devextreme/dist/css/dx.light.css';
- import Gantt from 'devextreme-react/gantt';
- class App extends React.Component {
- constructor(props) {
- super(props);
- this.ganttRef = React.createRef();
- this.yourCustomMethod = () => {
- this.gantt.getDependencyData("dependency_key");
- // ...
- }
- }
- get gantt() {
- return this.ganttRef.current.instance;
- }
- render() {
- return (
- <Gantt ...
- ref={this.ganttRef}>
- </Gantt>
- );
- }
- }
- export default App;
See Also
getInstance(element)
getInstance is a static method that the UI component class supports. The following code demonstrates how to get the Gantt instance found in an element with the myGantt
ID:
- // Modular approach
- import Gantt from "devextreme/ui/gantt";
- ...
- let element = document.getElementById("myGantt");
- let instance = Gantt.getInstance(element) as Gantt;
- // Non-modular approach
- let element = document.getElementById("myGantt");
- let instance = DevExpress.ui.dxGantt.getInstance(element);
See Also
getResourceAssignmentData(key)
- import React from 'react';
- import 'devextreme/dist/css/dx.light.css';
- import Gantt from 'devextreme-react/gantt';
- class App extends React.Component {
- constructor(props) {
- super(props);
- this.ganttRef = React.createRef();
- this.yourCustomMethod = () => {
- this.gantt.getResourceAssignmentData("res_assignment_key");
- // ...
- }
- }
- get gantt() {
- return this.ganttRef.current.instance;
- }
- render() {
- return (
- <Gantt ...
- ref={this.ganttRef}>
- </Gantt>
- );
- }
- }
- export default App;
See Also
getResourceData(key)
- import React from 'react';
- import 'devextreme/dist/css/dx.light.css';
- import Gantt from 'devextreme-react/gantt';
- class App extends React.Component {
- constructor(props) {
- super(props);
- this.ganttRef = React.createRef();
- this.yourCustomMethod = () => {
- this.gantt.getResourceData("resource_key");
- // ...
- }
- }
- get gantt() {
- return this.ganttRef.current.instance;
- }
- render() {
- return (
- <Gantt ...
- ref={this.ganttRef}>
- </Gantt>
- );
- }
- }
- export default App;
See Also
getTaskData(key)
- import React from 'react';
- import 'devextreme/dist/css/dx.light.css';
- import Gantt from 'devextreme-react/gantt';
- class App extends React.Component {
- constructor(props) {
- super(props);
- this.ganttRef = React.createRef();
- this.yourCustomMethod = () => {
- this.gantt.getTaskData("task_key");
- // ...
- }
- }
- get gantt() {
- return this.ganttRef.current.instance;
- }
- render() {
- return (
- <Gantt ...
- ref={this.ganttRef}>
- </Gantt>
- );
- }
- }
- export default App;
See Also
getTaskResources(key)
- import React from 'react';
- import 'devextreme/dist/css/dx.light.css';
- import Gantt from 'devextreme-react/gantt';
- class App extends React.Component {
- constructor(props) {
- super(props);
- this.ganttRef = React.createRef();
- this.yourCustomMethod = () => {
- this.gantt.getTaskResources("task_key");
- // ...
- }
- }
- get gantt() {
- return this.ganttRef.current.instance;
- }
- render() {
- return (
- <Gantt ...
- ref={this.ganttRef}>
- </Gantt>
- );
- }
- }
- export default App;
See Also
getVisibleDependencyKeys()
- import React from 'react';
- import 'devextreme/dist/css/dx.light.css';
- import Gantt from 'devextreme-react/gantt';
- class App extends React.Component {
- constructor(props) {
- super(props);
- this.ganttRef = React.createRef();
- this.yourCustomMethod = () => {
- this.gantt.getVisibleDependencyKeys();
- // ...
- }
- }
- get gantt() {
- return this.ganttRef.current.instance;
- }
- render() {
- return (
- <Gantt ...
- ref={this.ganttRef}>
- </Gantt>
- );
- }
- }
- export default App;
See Also
getVisibleResourceAssignmentKeys()
- import React from 'react';
- import 'devextreme/dist/css/dx.light.css';
- import Gantt from 'devextreme-react/gantt';
- class App extends React.Component {
- constructor(props) {
- super(props);
- this.ganttRef = React.createRef();
- this.yourCustomMethod = () => {
- this.gantt.getVisibleResourceAssignmentKeys();
- // ...
- }
- }
- get gantt() {
- return this.ganttRef.current.instance;
- }
- render() {
- return (
- <Gantt ...
- ref={this.ganttRef}>
- </Gantt>
- );
- }
- }
- export default App;
See Also
getVisibleResourceKeys()
- import React from 'react';
- import 'devextreme/dist/css/dx.light.css';
- import Gantt from 'devextreme-react/gantt';
- class App extends React.Component {
- constructor(props) {
- super(props);
- this.ganttRef = React.createRef();
- this.yourCustomMethod = () => {
- this.gantt.getVisibleResourceKeys();
- // ...
- }
- }
- get gantt() {
- return this.ganttRef.current.instance;
- }
- render() {
- return (
- <Gantt ...
- ref={this.ganttRef}>
- </Gantt>
- );
- }
- }
- export default App;
See Also
getVisibleTaskKeys()
- import React from 'react';
- import 'devextreme/dist/css/dx.light.css';
- import Gantt from 'devextreme-react/gantt';
- class App extends React.Component {
- constructor(props) {
- super(props);
- this.ganttRef = React.createRef();
- this.yourCustomMethod = () => {
- this.gantt.getVisibleTaskKeys();
- // ...
- }
- }
- get gantt() {
- return this.ganttRef.current.instance;
- }
- render() {
- return (
- <Gantt ...
- ref={this.ganttRef}>
- </Gantt>
- );
- }
- }
- export default App;
See Also
insertDependency(data)
- import React from 'react';
- import 'devextreme/dist/css/dx.light.css';
- import Gantt from 'devextreme-react/gantt';
- class App extends React.Component {
- constructor(props) {
- super(props);
- this.ganttRef = React.createRef();
- this.yourCustomMethod = () => {
- this.gantt.insertDependency({ predecessorId: 1, successorId: 3, type: 3 });
- // ...
- }
- }
- get gantt() {
- return this.ganttRef.current.instance;
- }
- render() {
- return (
- <Gantt ...
- ref={this.ganttRef}>
- </Gantt>
- );
- }
- }
- export default App;
See Also
insertResource(data, taskKeys)
- import React from 'react';
- import 'devextreme/dist/css/dx.light.css';
- import Gantt from 'devextreme-react/gantt';
- class App extends React.Component {
- constructor(props) {
- super(props);
- this.ganttRef = React.createRef();
- this.yourCustomMethod = () => {
- // Inserts a new resource
- this.gantt.insertResource({ text: "New Resource" });
- // Inserts a new resource and assigns it to an individual task
- this.gantt.insertResource({ text: "New Resource" }, [6]);
- // Inserts a new resource and assigns it to multiple tasks
- this.gantt.insertResource({ text: "New Resource" }, [6,8]);
- }
- }
- get gantt() {
- return this.ganttRef.current.instance;
- }
- render() {
- return (
- <Gantt ...
- ref={this.ganttRef}>
- </Gantt>
- );
- }
- }
- export default App;
See Also
insertTask(data)
The insertTask method does not update the following data fields in the data source:
Key value fields.
Fields that are not assigned to the Gantt's columns.
- import React from 'react';
- import 'devextreme/dist/css/dx.light.css';
- import Gantt from 'devextreme-react/gantt';
- class App extends React.Component {
- constructor(props) {
- super(props);
- this.ganttRef = React.createRef();
- this.yourCustomMethod = () => {
- // Inserts a new task with the specified subject at the end of the other tasks.
- this.gantt.insertTask({ title: "New Task" });
- // Inserts a child task with the specified subject as a child of the task with ID = 2
- this.gantt.insertTask({ title: "New Task" , parentId: 2});
- }
- }
- get gantt() {
- return this.ganttRef.current.instance;
- }
- render() {
- return (
- <Gantt ...
- ref={this.ganttRef}>
- </Gantt>
- );
- }
- }
- export default App;
See Also
registerKeyHandler(key, handler)
A handler. Accepts the keydown event as the argument. It is a dxEvent 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
unassignResourceFromTask(resourceKey, taskKey)
- import React from 'react';
- import 'devextreme/dist/css/dx.light.css';
- import Gantt from 'devextreme-react/gantt';
- class App extends React.Component {
- constructor(props) {
- super(props);
- this.ganttRef = React.createRef();
- this.yourCustomMethod = () => {
- this.gantt.unassignResourceFromTask(3, 10);
- // ...
- }
- }
- get gantt() {
- return this.ganttRef.current.instance;
- }
- render() {
- return (
- <Gantt ...
- ref={this.ganttRef}>
- </Gantt>
- );
- }
- }
- export default App;
See Also
updateTask(key, data)
Note that the updateTask method does not allow you to change a task's parent task.
- import React from 'react';
- import 'devextreme/dist/css/dx.light.css';
- import Gantt from 'devextreme-react/gantt';
- class App extends React.Component {
- constructor(props) {
- super(props);
- this.ganttRef = React.createRef();
- this.yourCustomMethod = () => {
- this.gantt.updateTask(3, {title: "New Title"});
- // ...
- }
- }
- get gantt() {
- return this.ganttRef.current.instance;
- }
- render() {
- return (
- <Gantt ...
- ref={this.ganttRef}>
- </Gantt>
- );
- }
- }
- export default App;
See Also
If you have technical questions, please create a support ticket in the DevExpress Support Center.