Rows

15 Mar 201812 minutes to read

The row represents a task information from the data source. You can perform the following actions in Gantt rows.

Adding a row

A row can be added to the Gantt in the following ways:

  • Toolbar
  • Context menu
  • Adding a row programmatically

Adding toolbar

The row can be added in the Gantt from toolbar when the e-editsettings.allowAdding property is set to true. When clicking the toolbar add icon, you should 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 the Gantt, by default the new row will be added as the top most row in Gantt.

  • JAVASCRIPT
  • <body ng-controller="GanttCtrl">
       <!--Add  Gantt control here-->    
       <div id="GanttContainer" ej-gantt
          //...
          e-editsettings="editSettings" 
          >
       </div>
      <script>
        var editSettings= {
            //...
            allowAdding: true
        },
        angular.module('listCtrl', ['ejangular'])
            .controller('GanttCtrl', function($scope) {
                //...
                $scope.editSettings = "editSettings";
            });
    </script>
    </body>

    Context menu adding

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

  • JAVASCRIPT
  • <body ng-controller="GanttCtrl">
       <!--Add  Gantt control here-->    
       <div id="GanttContainer" ej-gantt
          //...
          e-enablecontextmenu= "true"
          e-editsettings="editSettings" 
          >
       </div>
      <script>
        var editSettings= {
            //...
            allowAdding: true
        },
        angular.module('listCtrl', ['ejangular'])
            .controller('GanttCtrl', function($scope) {
                //...
                $scope.editSettings = "editSettings";
            });
    </script>
    </body>

    Adding a row programmatically

    You can add rows in the below positions dynamically by using the 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 following code example explains adding a row using the custom button:

  • HTML
  • <button id="addRow" style="top:27px;left:50px;position:absolute">AddRow</button>
  • JAVASCRIPT
  • <div id="GanttContainer" ej-gantt
    //... >
    </div>
    
    $("#addRow").click(function(args) {
    
        //Create Gantt object
    
        var GanttObj = $("#gantt").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 screenshot shows adding a new row as child:

    Drag and drop of row

    You can dynamically re-arrange the rows in the Gantt control by using the e-allowdraganddrop property. With this property, the drag and drop of the row can be enabled or disabled. Rows can be inserted above or 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 e-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 drag and drop of row with default tooltip in the Gantt:

  • JAVASCRIPT
  • <body ng-controller="GanttCtrl">
       <!--Add  Gantt control here-->    
       <div id="GanttContainer" ej-gantt
          //...
         e-allowdraganddrop= "true"
         e-dragtooltip= "dragTooltip" 
          >
       </div>
      <script>
        var dragTooltip= {
            showTooltip: true
        },
        angular.module('listCtrl', ['ejangular'])
            .controller('GanttCtrl', function($scope) {
                //...
                $scope.dragTooltip = "dragTooltip";
            });
    </script>
    </body>

    The following screenshot depicts the drag and drop of row in the Gantt widget:

    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 the row drag tooltip with the desired field items:

  • JAVASCRIPT
  • <body ng-controller="GanttCtrl">
       <!--Add  Gantt control here-->    
       <div id="GanttContainer" ej-gantt
          //...
         e-allowdraganddrop= "true"
         e-dragtooltip= "dragTooltip" 
          >
       </div>
      <script>
        var  dragTooltip= {
            showTooltip: true,
            tooltipItems: [
                "taskID",
                "taskName",
                "startDate",
                "endDate"
                ]
        },
        angular.module('listCtrl', ['ejangular'])
            .controller('GanttCtrl', function($scope) {
                //...
                $scope.dragTooltip = "dragTooltip";
            });
    </script>
    </body>

    The tooltipTemplate property renders the template tooltip for dragging and dropping of row 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.

    The following code shows how to render the row drag tooltip with tooltip template:

  • JAVASCRIPT
  • <body ng-controller="GanttCtrl">
       <!--Add  Gantt control here-->    
       <div id="GanttContainer" ej-gantt
          //...
         e-allowdraganddrop= "true"
         e-dragtooltip= "dragTooltip" 
          >
       </div>
      <script>
        dragTooltip: {
            showTooltip: true,
            tooltipTemplate: "#customTooltip"
        },
        angular.module('listCtrl', ['ejangular'])
            .controller('GanttCtrl', function($scope) {
                //...
                $scope.dragTooltip = "dragTooltip";
            });
    </script>
    </body>
    
    <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>

    Alternate row background

    In Gantt, you can enable or disable the alternate row background by using the e-enablealtrow property. The following code example shows you to disable the alternate row color in the Gantt:

  • JAVASCRIPT
  • <body ng-controller="GanttCtrl">
       <!--Add  Gantt control here-->    
       <div id="GanttContainer" ej-gantt
          //...
         e-enablealtrow= "false"
          >
       </div>
    </body>

    Change altRow background

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

  • HTML
  • <head>
    
        <style>
            .e-treegrid .e-alt-row {
                background-color: Bisque;
            }
        </style>
    
    </head>
  • JAVASCRIPT
  • <body ng-controller="GanttCtrl">
       <!--Add  Gantt control here-->    
       <div id="GanttContainer" ej-gantt
          //...
         e-enablealtrow= "true"
          >
       </div>
    </body>

    Row height

    15 Mar 201812 minutes to read

    You can change the height of row in Gantt by setting the row height in pixels to the e-rowheight property. The following code example explains how to change the row height in Gantt at load time.

  • JAVASCRIPT
  • <body ng-controller="GanttCtrl">
       <!--Add  Gantt control here-->    
       <div id="GanttContainer" ej-gantt
          //...
         e-rowheight= "60"
          >
       </div>
    </body>