Row
23 Feb 201811 minutes to read
It represents the record details that are fetched from the datasource.
Details Template
It provides a detailed view /additional information about each row of the grid. You can render any type of JsRender template and assign the script template id in the e-details-template
property. And also you can change HTML elements in detail template row into JavaScript controls using e-on-details-data-bound
event.
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 row respectively.
The following code example describes the above behavior.
<ej-grid e-data-source.bind="data"e-details-template.bind="detailTemp" e-on-details-data-bound.delegate="detailgrid($event.detail)">
<ej-column e-field="EmployeeID"></ej-column>
<ej-column e-field="FirstName"></ej-column>
<ej-column e-field="Title"></ej-column>
<ej-column e-field="City"></ej-column>
<ej-column e-field="Country"></ej-column>
</ej-grid>
<script id="tabGridContents" type="text/x-jsrender">
<div class="tabcontrol" id="Test">
<ul>
<li><a>Stock Grid</a></li>
</ul>
<div id="gridTab{{:EmployeeID}}">
<div id="detailGrid"></div>
</div>
</div>
</script>
export class Grid {
constructor() {
this.data = window.employeeView;
this.detailTemp= "#tabGridContents";
}
detailgrid(e){
var filteredData = e.data["EmployeeID"];
var data = ej.DataManager(window.ordersView).executeLocal(ej.Query().where("EmployeeID", "equal", parseInt(filteredData), true).take(5));
e.detailsElement.find("#detailGrid").ejGrid({
dataSource: data,
columns: ["OrderID", "EmployeeID", "ShipCity", "ShipCountry", "Freight"]
});
e.detailsElement.find(".tabcontrol").ejTab();
}
}
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 grid all rows. e-row-template
property can be used bind the id
of HTML template.
The following code example describes the above behavior.
<ej-grid e-data-source.bind="data"e-row-template.bind="rowTemp" e-allow-scrolling=true e-scroll-settings.bind="scroll">
<ej-column e-field="Photo" e-header-text="Photo" e-width="30"></ej-column>
<ej-column e-header-text="Employee Details" e-width="70"></ej-column>
</ej-grid>
<script id="templateData" type="text/x-jsrender">
<tr>
<td class="photo">
<img src="~/../Content/images/Employees/{{:EmployeeID}}.png" alt="{{:EmployeeID}}" />
</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">Birth Date
</td>
<td>
</td>
</tr>
<tr>
<td class="CardHeader">Hire Date
</td>
<td>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</script>
export class Grid {
constructor() {
this.data = window.employeeData;
this.rowTemp= "#templateData";
this.scroll ={ width: 500, height: 380 }
}
}
<style type="text/css" class="cssStyles">
.photo img
{
width: 130px;
height: 115px;
}
.photo, .details
{
border-color: #c4c4c4;
border-style: solid;
}
.photo
{
border-width: 1px 0px 0px 0px;
}
.details
{
border-width: 1px 0px 0px 1px;
}
#RowGrid tbody tr td
{
vertical-align: middle;
}
.details > table
{
width: 100%;
}
.CardHeader
{
font-weight: bolder;
}
td
{
padding: 2px 2px 3px 2px;
}
</style>
The following output is displayed as a result of the above code example.