Row

19 Jan 201824 minutes to read

It represents the record details that are fetched from the datasource.

You can see the mouse hovering effect on the corresponding grid rows using enableRowHover property. By default its value is true.

The following code example describes the above behavior.

  • HTML
  • <ej-grid id="Grid" [dataSource]="gridData" [allowPaging]="true" [enableRowHover]="true">
        <e-columns>
            <e-column field="OrderID"  headerText="OrderID"></e-column>
            <e-column field="EmployeeID" headerText="EmployeeID"></e-column>
             <e-column field="ShipCity" headerText="ShipCity"></e-column>
            <e-column field="ShipCountry" headerText="ShipCountry"></e-column>
            <e-column field="Freight" headerText="Freight"></e-column>
           
        </e-columns>
     </ej-grid>
  • JAVASCRIPT
  • import {Component, ViewEncapsulation} from '@angular/core';
        @Component({
          selector: 'ej-app',
          templateUrl: 'app/app.component.html',  //give the path file for Grid control html file.
        })
        export class AppComponent {
            public gridData;
            constructor()
            {
               //The datasource "window.gridData" is referred from 'http://js.syncfusion.com/demos/web/scripts/jsondata.min.js'
               this.gridData = window.gridData;
    		}
         }

    The following output is displayed as a result of the above code example.

    Details Template

    It provides a detailed view /additional information about each row of the grid. You can render any type of template using ng-template with e-detailstemplate attribute in grid.

    On enabling details template, new column will be added in grid with an expander button in it and that can be expanded or collapsed to show or hide the underlying details of row respectively.

    The following code example describes the above behavior.

  • HTML
  • <ej-grid  [allowPaging]="true" detailsTemplate="#tabGridContents" [dataSource]="gridData" >
        <e-columns>
            <e-column field="EmployeeID"></e-column>        
            <e-column field="FirstName"></e-column>
            <e-column field="Title"></e-column>        
            <e-column field="City"></e-column>
        </e-columns>
        <ng-template #tabGridContents e-details-template let-data>     
             <ej-tab>
             <ul>
               <li><a href="#Grid">Stock Grid</a></li>       
            </ul>
        <div id="Grid">
            <ej-grid [allowPaging]="true" [dataSource]="data.DetailsData">
                <e-columns>
                    <e-column field="OrderID"></e-column>
                    <e-column field="EmployeeID"></e-column>
                    <e-column field="ShipCity"></e-column>
                    <e-column field="ShipCountry"></e-column>
                    <e-column field="Freight"></e-column>
                </e-columns>
            </ej-grid> 
        </div>
    </ej-tab>  
         </ng-template> 
    </ej-grid>
  • JAVASCRIPT
  • import {Component, ViewEncapsulation} from '@angular/core';
        @Component({
          selector: 'ej-app',
          templateUrl: 'app/app.component.html',  //give the path file for Grid control html file.
        })
        export class GridComponent {
        
        public gridData: any;
    
        public DetailsData : any;
    
        constructor() {
           
            this.gridData = [{
                EmployeeID: 1, FirstName: 'Nancy', Title: 'Sales Representative', 
                DetailsData:[{ OrderID : 10835, EmployeeID: 1, ShipCity : "Berlin", ShipCountry : "Germany", Freight : 69.53 },
                { OrderID : 10952, EmployeeID: 1, ShipCity : "Berlin", ShipCountry : "Germany", Freight : 40.42 },
                { OrderID : 10677, EmployeeID: 1, ShipCity : "Mexico D.F.", ShipCountry : "Mexico", Freight : 4.03 },
                { OrderID : 10558, EmployeeID: 1, ShipCity : "Colchester", ShipCountry : "UK", Freight : 72.97 },
                { OrderID : 10453, EmployeeID: 1, ShipCity : "Colchester", ShipCountry : "UK", Freight : 25.36 }
                ], 
                City: 'Seattle', Country: 'USA', 
            },
            {
                EmployeeID: 2, FirstName: 'Andrew', Title: 'Vice President, Sales',
                DetailsData:[{ OrderID : 10477, EmployeeID: 2, ShipCity : "Berlin", ShipCountry : "Germany", Freight : 69.53 },
                { OrderID : 10247, EmployeeID: 2, ShipCity : "Berlin", ShipCountry : "Germany", Freight : 40.42 },
                { OrderID : 10345, EmployeeID: 2, ShipCity : "Mexico D.F.", ShipCountry : "Mexico", Freight : 4.03 },
                { OrderID : 10544, EmployeeID: 2, ShipCity : "Colchester", ShipCountry : "UK", Freight : 72.97 },
                { OrderID : 10345, EmployeeID: 2, ShipCity : "Colchester", ShipCountry : "UK", Freight : 25.36 }
                ],
                City: 'Tacoma', Country: 'USA'
            },
            {
                EmployeeID: 3, FirstName: 'Janet', Title: 'Sales Representative',
                DetailsData:[{ OrderID : 10478, EmployeeID: 3, ShipCity : "Berlin", ShipCountry : "Germany", Freight : 69.53 },
                { OrderID : 10249, EmployeeID: 3, ShipCity : "Berlin", ShipCountry : "Germany", Freight : 40.42 },
                { OrderID : 10340, EmployeeID: 3, ShipCity : "Mexico D.F.", ShipCountry : "Mexico", Freight : 4.03 },
                { OrderID : 10320, EmployeeID: 3, ShipCity : "Colchester", ShipCountry : "UK", Freight : 72.97 },
                { OrderID : 10550, EmployeeID: 3, ShipCity : "Colchester", ShipCountry : "UK", Freight : 25.36 }
                ],
                City: 'Tacoma', Country: 'USA'
            },
            {
                EmployeeID: 4, FirstName: 'Margaret', Title: 'Sales Representative',
                DetailsData:[{ OrderID : 10444, EmployeeID: 4, ShipCity : "Berlin", ShipCountry : "Germany", Freight : 69.53 },
                { OrderID : 10886, EmployeeID: 4, ShipCity : "Berlin", ShipCountry : "Germany", Freight : 40.42 },
                { OrderID : 10390, EmployeeID: 4, ShipCity : "Mexico D.F.", ShipCountry : "Mexico", Freight : 4.03 },
                { OrderID : 10678, EmployeeID: 4, ShipCity : "Colchester", ShipCountry : "UK", Freight : 72.97 },
                { OrderID : 10369, EmployeeID: 4, ShipCity : "Colchester", ShipCountry : "UK", Freight : 25.36 }
                ],
                City: 'Redmond', Country: 'USA'
            }];
           
         }     
      }

    The following output is displayed as a result of the above code example.

    Row Template

    Row template enables you to set the customized look and behavior to all Grid rows.You can render any type of template using ng-template with e-row-template attribute in grid.

    The following code example describes the above behavior.

  • HTML
  • <ej-grid  [dataSource]="gridData" [rowTemplate]="temp" >
        <e-columns>
            <e-column headerText="Photo"></e-column>
            <e-column headerText="Employee Details"></e-column>
        </e-columns>
        <ng-template rowtemplate e-row-template let-data>
    <tr>
       <td class="photo">
       <img style="width: 130px; height: 160px" src="/13.2.0.29/themes/web/images/employees/.png" />
       </td>
       <td class="details">
       <table class="CardTable" cellpadding="3" cellspacing="2">
       <colgroup>
       <col width="50%">
       <col width="50%">
       </colgroup>
       <tbody>
       <tr>
       <td class="CardHeader">First Name </td>
       <td></td>
       </tr>
       <tr>
       <td class="CardHeader">Last Name</td>
       <td></td>
       </tr>
       <tr>
       <td class="CardHeader">Title
       </td>
       <td></td>
       </tr>
       </tbody>
       </table>
       </td>
       </tr>
        </ng-template>
    
    </ej-grid>
  • CSS
  • .photo img {
    	width: 130px;
    }
    .photo, .details {
    	border-color: #c4c4c4;
    	border-style: solid;
    }
    .photo {
    	border-width: 1px 0px 0px 0px;
    }
    .details {
    	border-width: 1px 0px 0px 1px;
    }
    .details > table {
    	width: 100%;
    }
    .CardHeader {
    	font-weight: bolder;
    }
  • JAVASCRIPT
  • import {Component, ViewEncapsulation} from '@angular/core';
        @Component({
          selector: 'ej-app',
          templateUrl: 'app/app.component.html',  //give the path file for Grid control html file.
        })
        export class AppComponent {
           ublic gridData: any;
        
        temp:any;
        
        constructor() {
           
            this.gridData = (window as any).employeeView,
        
            this.temp = "#rowtemplate";
         }

    The following output is displayed as a result of the above code example.

    Alternate row styling

    Alternate row styling enhances the readability of grid rows by setting different background color for every alternate row. You can enable the alternative row styling in grid by using enableAltRow property.

    By default its value is true, so the following code example describes the how to turn off alternate row behavior.

  • HTML
  • <ej-grid id="Grid" [dataSource]="gridData" [allowPaging]="true" [enableAltRow]="false">
        <e-columns>
            <e-column field="OrderID"  headerText="OrderID"></e-column>
            <e-column field="EmployeeID" headerText="EmployeeID"></e-column>
             <e-column field="ShipCity" headerText="ShipCity"></e-column>
            <e-column field="ShipCountry" headerText="ShipCountry"></e-column>
            <e-column field="Freight" headerText="Freight"></e-column>
           
        </e-columns>
     </ej-grid>
  • JAVASCRIPT
  • import {Component, ViewEncapsulation} from '@angular/core';
        @Component({
          selector: 'ej-app',
          templateUrl: 'app/app.component.html',  //give the path file for Grid control html file.
        })
        export class AppComponent {
            public gridData;
            constructor()
            {
               //The datasource "window.gridData" is referred from 'http://js.syncfusion.com/demos/web/scripts/jsondata.min.js'
               this.gridData = window.gridData;
    		}
         }

    The following output is displayed as a result of the above code example.

    Drag-and-Drop

    Grid rows can be reordered, dropped to another Grid or custom control by enabling allowRowDragAndDrop Grid property.

    NOTE

    To enable selection of multiple rows by mouse dragging on Grid rows, selectionType property of Grid must be set to multiple.

    Reorder

    By simply enabling the property allowRowDragAndDrop, Grid rows can be reordered within the same Grid.

    The following code example describes the above behavior.

  • HTML
  • <ej-grid id="Grid" [dataSource]="gridData" [allowPaging]="true" [allowRowDragAndDrop]="true" [selectionType]="multiple">
        <e-columns>
            <e-column field="OrderID"  headerText="Order ID" [isPrimaryKey]="true" textAlign="right" width="80"></e-column>
            <e-column field="CustomerID" headerText="Customer ID" width="90"></e-column>
             <e-column field="Freight" headerText="Freight" textAlign="right" width="75" format="{0:C}"></e-column>
            <e-column field="ShipCountry" headerText="Ship Country" width="110"></e-column>
        </e-columns>
     </ej-grid>
  • JAVASCRIPT
  • import {Component, ViewEncapsulation} from '@angular/core';
        @Component({
          selector: 'ej-app',
          templateUrl: 'app/app.component.html',  //give the path file for Grid control html file.
        })
        export class AppComponent {
            public gridData;
            constructor()
            {
               //The datasource "window.gridData" is referred from 'http://js.syncfusion.com/demos/web/scripts/jsondata.min.js'
               this.gridData = window.gridData;
    		}
         }

    The following output is displayed before reordering rows.

    The following output is displayed after reordering rows.

    Grid-to-Grid

    To drag and drop rows between two Grid, enable the Grid property allowRowDragAndDrop and specify the target Grid ID in dropTargetID property of Grid rowDropSettings.

    The following code example describes the above behavior.

  • HTML
  • <div  class="gridcomp" style="float:left;width:50%" ></div>
     <ej-grid id="Grid" [dataSource]="gridData" [allowPaging]="true" [allowRowDragAndDrop]="true" [selectionType]="multiple" [rowDropSettings.dropTargetID]="Gridid">
        <e-columns>
            <e-column field="OrderID"  headerText="Order ID" [isPrimaryKey]="true" textAlign="right" width="80"></e-column>
            <e-column field="CustomerID" headerText="Customer ID" width="90"></e-column>
            <e-column field="Freight" headerText="Freight" textAlign="right" width="75" format="{0:C}"></e-column>
            <e-column field="ShipCountry" headerText="Ship Country" width="110"></e-column>
       </e-columns>
    </ej-grid>
    <div class="gridcomp2" style="float:right;width:49%"></div>
    <ej-grid id="DestinationGrid" [dataSource]=[] [allowPaging]="true" [allowRowDragAndDrop]="true" [selectionType]="multiple" [rowDropSettings.dropTargetID]="Gridtarget">
        <e-columns>
            <e-column field="OrderID"  headerText="Order ID" [isPrimaryKey]="true" textAlign="right" width="80"></e-column>
            <e-column field="CustomerID" headerText="Customer ID" width="90"></e-column>
            <e-column field="Freight" headerText="Freight" textAlign="right" width="75" format="{0:C}"></e-column>
            <e-column field="ShipCountry" headerText="Ship Country" width="110"></e-column>
       </e-columns>
    </ej-grid>
  • JAVASCRIPT
  • import {Component, ViewEncapsulation} from '@angular/core';
        @Component({
          selector: 'ej-app',
          templateUrl: 'app/app.component.html',  //give the path file for Grid control html file.
        })
        export class AppComponent {
            public gridData;
            public Gridid = "#DestinationGrid";
            public Gridtarget = "#Grid";
            constructor()
            {
               //The datasource "window.gridData" is referred from 'http://js.syncfusion.com/demos/web/scripts/jsondata.min.js'
               this.gridData = window.gridData;
             }
         }

    The following output is displayed before dropping Grid rows.

    The following output is displayed after dropping Grid rows.

    Grid-to-Custom control

    You can also drag and drop grid rows to any custom control. For instance, let it be a form.

    Enable the Grid property allowRowDragAndDrop and specify the target form element ID in dropTargetID property of Grid rowDropSettings.

    The following code example describes the above behavior.

  • HTML
  • <div style="float:right;width:38%">
    <form role="form" id="dropForm" style="width:98%">
                            <fieldset style="text-align:center; font-weight:700"><legend>Record Details</legend></fieldset>
                            <div class="form-group row">
                                <label for="OrderID">Order ID:</label>
                                <input class="form-control" name="OrderID">
                            </div>
                            <div class="form-group row">
                                <label for="CustomerID">Customer ID:</label>
                                <input name="CustomerID" class="form-control">
                            </div>
                            <div class="form-group row">
                                <label for="EmployeeID">Employee ID:</label>
                                <input name="EmployeeID" class="form-control">
                            </div>
                            <div class="form-group row">
                                <label for="Freight">Freight:</label>
                                <input name="Freight" class="form-control">
                            </div>
                            <div class="form-group row">
                                <label for="ShipCity">Ship City:</label>
                                <input name="ShipCity" class="form-control">
                            </div>
                            <br />
                        </form>
                    </div>
  • HTML
  • <div class="gridcomp" style="float:left;width:60%" ></div>
     <ej-grid id="Grid" [dataSource]="gridData" [allowPaging]="true" [allowRowDragAndDrop]="true" [selectionType]="multiple" [rowDropSettings.dropTargetID]="dropForm" (rowDrop)="rowDropHandler($event)">
        <e-columns>
            <e-column field="OrderID"  headerText="Order ID" [isPrimaryKey]="true" textAlign="right" width="80"></e-column>
            <e-column field="CustomerID" headerText="Customer ID" width="120"></e-column>
            <e-column field="EmployeeID" headerText="Employee ID" width="120" textAlign="right" ></e-column>
            <e-column field="Freight" headerText="Freight" textAlign="right" width="75" format="{0:C}"></e-column>
            <e-column field="ShipCountry" headerText="Ship City" width="140"></e-column>
        </e-columns>
     </ej-grid>
  • JAVASCRIPT
  • import {Component, ViewEncapsulation} from '@angular/core';
        @Component({
          selector: 'ej-app',
          templateUrl: 'app/app.component.html',  //give the path file for Grid control html file.
        })
        export class AppComponent {
            public gridData;
            public rowDropHandler(e){ 
    	        for (var key in e.rowData[0]) {
                    $('#dropForm input[name=' + key + ']').val(e.rowData[0][key]);
                }
    	     }
            constructor()
            {
               //The datasource "window.gridData" is referred from 'http://js.syncfusion.com/demos/web/scripts/jsondata.min.js'
               this.gridData = window.gridData;
    		}
         }

    The following output is displayed before dropping the rows on Form.

    The following output is displayed after dropping the rows on Form.

    NOTE

    The default behavior of drag and drop between Grid or any other controls is as cut and paste. For copy and paste behavior specify the drag behavior in dragBehavior property of rowDropSettings as ej.Grid.DragBehavior.Copy.