Rows

19 Sep 201711 minutes to read

Row represents a task information from the datasource, and it is possible to perform the following actions in Gantt rows

Adding a row

A row can be added in the following ways in Gantt,

  • Toolbar
  • Context menu
  • Adding a row programmatically

Toolbar Adding

Row can be added in Gantt from toolbar while editSettings.allowAdding property is set to true. On clicking the toolbar add icon, you need to provide the task information in the add dialog. If a row is previously selected, then the new row will be added below and in the same hierarchical level as that of the selected row. If there are no rows selected in Gantt, by default the new row will be added as the top most row in Gantt.

  • JAVASCRIPT
  • <ej-gantt
        //...
        [editSettings]= "editSettings">
    </ej-gantt>
  • JAVASCRIPT
  • import { Component } from '@angular/core';
    
    @Component({
      selector: 'ej-app',
        templateUrl: 'app/app.component.html',
    })
    export class AppComponent {
       public editSettings:any;
       constructor() {
       this.editSettings={
            //…
            allowAdding: true,
        }
      }
    }

    Context menu adding

    You can able to add new rows either above or below the selected rows by using the default context menu, while enableContextMenu is set to true. The new row added will have the same task information similar to the selected row.

  • JAVASCRIPT
  • <ej-gantt
        //...
        [enableContextMenu]="true"
        [editSettings]= "editSettings">
    </ej-gantt>
  • JAVASCRIPT
  • import { Component } from '@angular/core';
    
    @Component({
      selector: 'ej-app',
        templateUrl: 'app/app.component.html',
    })
    export class AppComponent {
        public editSettings:any;
      constructor() {
       this.editSettings={
            //…
            allowAdding: true,
        }
      }
    }

    Adding a row programmatically

    You can add rows in the below positions dynamically using addRecord public method,

    • Top of all the rows
    • Bottom to all the existing rows
    • Above the selected row
    • Below the selected row
    • As child to the selected row

    The below code example explains on adding a row using a custom button.

  • JAVASCRIPT
  • <button id="addRow" (click)="addRow($event)">AddRow</button>
    
    <ej-gantt id="GanttControl"
        //...>
    </ej-gantt>
  • JAVASCRIPT
  • import {Component} from '@angular/core';
    
    @Component({
        selector: 'ej-app',
        templateUrl: 'app/app.component.html',
    })
    export class AppComponent {
        public toolbarSettings: any;
        constructor() {
            //...
        }
        public addRow(event) {
            //Create Gantt object
            var GanttObj = $("#GanttControl").data("ejGantt");
            // data to be added
            var data = {
                taskID: 5,
                taskName: "New Task",
                startDate: "02/13/2014",
                endDate: "02/14/2014",
                duration: 2
            };
            GanttObj.addRecord(data, ej.Gantt.AddRowPosition.Child);
        }
    }

    The following screen shot shows to add new row as child.

    Row drag and drop

    It is possible to dynamically re-arrange the rows in the Gantt control by using the allowDragAndDrop property. With this property, row drag and drop can be enabled or disabled. Rows can be inserted above, below as a sibling or as a child to the existing row with the help of this feature. A default tooltip is rendered while dragging the Gantt row and this tooltip can be customized by the dragTooltip property. This property has inner properties such as showTooltip, tooltipItems and tooltipTemplate.

    The showTooltip property is used to enable or disable the tooltip. By default, this property value is false.

    The following code explains about enabling the row drag and drop with the default tooltip in the Gantt.

  • JAVASCRIPT
  • <ej-gantt id="GanttControl" [allowDragAndDrop]="true" [dragTooltip]="dragTooltip"
        //...>
    </ej-gantt>
  • JAVASCRIPT
  • import {Component} from '@angular/core';
    
    @Component({
        selector: 'ej-app',
        templateUrl: 'app/app.component.html',
    })
    export class AppComponent {
        public dragTooltip: any;
        constructor() {
            //...
            this.dragTooltip = {
                showTooltip: true
            }
        }
    }

    The following screenshot depicts a row drag and drop in the Gantt widget.

    Click here to view the online demo sample for row drag and drop in Gantt

    Customizing Drag tooltip

    The tooltipItems property is used to customize the tooltip items. By using this property, specific fields can be rendered in the tooltip. By default this property value is null, and all the defined field items are rendered in the tooltip.

    The following code shows how to render row drag tooltip with the desired field items.

  • JAVASCRIPT
  • <ej-gantt id="GanttControl" [allowDragAndDrop]="true" [dragTooltip]="dragTooltip"
        //...>
    </ej-gantt>
  • JAVASCRIPT
  • import {Component} from '@angular/core';
    
    @Component({
        selector: 'ej-app',
        templateUrl: 'app/app.component.html',
    })
    export class AppComponent {
        public dragTooltip: any;
        constructor() {
            //...
            this.dragTooltip = {
                showTooltip: true,
                tooltipItems: [
                    "taskID",
                    "taskName",
                    "startDate",
                    "endDate"
                ]
            }
        }
    }

    The tooltipTemplate property renders the template tooltip for row drag and drop in the Gantt control by using the JsRender template. You can provide either the id value of the script element or the script element to the property.

    write the following code in index.html file and it shows how to render row drag tooltip with tooltip template.

  • JAVASCRIPT
  • <script id="customTooltip" type="text/x-jsrender">
    
        <tr>
    
            <td class="border" style='height:30px;'>
    
                <div>{{:#data['TaskId'] }}</div>
    
            </td>
    
            <td class="border" style='height:30px;'>
    
                <div>{{:#data['TaskName'] }}</div>
    
            </td>
    
        </tr>
    
    </script>
  • JAVASCRIPT
  • <ej-gantt id="GanttControl" [allowDragAndDrop]="true" [dragTooltip]="dragTooltip"
        //...>
    </ej-gantt>
  • JAVASCRIPT
  • import { Component } from '@angular/core';
    
    @Component({
      selector: 'ej-app',
        templateUrl: 'app/app.component.html',
    })
    export class AppComponent {
        public dragTooltip:any;
      constructor() {
       //...
       this.dragTooltip=  {
            showTooltip: true,
            tooltipTemplate: "#customtooltip"
        }
      }
    }

    Alternate row background

    In Gantt, it is possible to enable or disable the alternate row background using the enableAltRow property. The following code example shows you to disable the alternate row color in Gantt.

  • JAVASCRIPT
  • <ej-gantt id="GanttControl" [enableAltRow]="false"
        //...>
    </ej-gantt>

    Change altRow background

    The altRow background can be changed by setting the background color for the altRow using CSS. The following code example shows you how to change the altRow color.

    Write the following code in app.component.css file.

  • HTML
  • <head>
    
        <style>
            .e-treegrid .e-alt-row {
                background-color: Bisque;
            }
        </style>
    
    </head>
  • JAVASCRIPT
  • <ej-gantt id="GanttControl" [enableAltRow]="true"
        //...>
    </ej-gantt>
  • JAVASCRIPT
  • import { Component } from '@angular/core';
    
    @Component({
      selector: 'ej-app',
        templateUrl: 'app/app.component.html',
        styleUrls: ['app/app.component.css']
    })
    export class AppComponent {
      constructor() {
       //...
      }
    }

    Row height

    19 Sep 201711 minutes to read

    It is possible to change the height of the row in Gantt by setting row height in pixels to rowHeight property. The following code example explains how to change the row height in Gantt at load time.

  • JAVASCRIPT
  • <ej-gantt id="GanttControl" [rowHeight]="rowHeight"
        //...>
    </ej-gantt>
  • JAVASCRIPT
  • import {Component} from '@angular/core';
    
    @Component({
        selector: 'ej-app',
        templateUrl: 'app/app.component.html'
    })
    export class AppComponent {
        public rowHeight: any;
        constructor() {
            //...
            this.rowHeight = 60;
        }
    }