Expand and Collapse All Detail Rows in Grid
Environment
Product | Progress® Kendo UI® Grid for jQuery |
Operating System | Windows 7 64bit |
Browser | Google Chrome |
Browser Version | 61 |
Product Version | 2017.3.1026 |
Description
I have a Grid with nested children which are displayed in detail templates.
Does the Grid feature a built-in solution to add an Expand All and Collapse All button in the header row? How can I expand and collapse all detail templates with the click of a button?
Solution
Use the expandRow
and collapseRow
methods of the Grid.
<div id="example">
<button id="expand" class='k-button k-button-md k-rounded-md k-button-solid k-button-solid-base'><span class='k-button-text'>Expand All</span></button>
<button id="collapse" class='k-button k-button-md k-rounded-md k-button-solid k-button-solid-base'><span class='k-button-text'>Collapse All</span></button>
<div id="grid"></div>
<script>
$(document).ready(function() {
var element = $("#grid").kendoGrid({
dataSource: {
type: "odata",
transport: {
read: "https://demos.telerik.com/kendo-ui/service/Northwind.svc/Employees"
},
pageSize: 6,
serverPaging: true,
serverSorting: true
},
height: 600,
sortable: true,
pageable: true,
detailInit: detailInit,
dataBound: function() {
this.expandRow(this.tbody.find("tr.k-master-row").first());
},
columns: [
{
field: "FirstName",
title: "First Name",
width: "110px"
},
{
field: "LastName",
title: "Last Name",
width: "110px"
},
{
field: "Country",
width: "110px"
},
{
field: "City",
width: "110px"
},
{
field: "Title"
}
]
});
});
function detailInit(e) {
$("<div/>").appendTo(e.detailCell).kendoGrid({
dataSource: {
type: "odata",
transport: {
read: "https://demos.telerik.com/kendo-ui/service/Northwind.svc/Orders"
},
serverPaging: true,
serverSorting: true,
serverFiltering: true,
pageSize: 10,
filter: { field: "EmployeeID", operator: "eq", value: e.data.EmployeeID }
},
scrollable: false,
sortable: true,
pageable: true,
columns: [
{ field: "OrderID", width: "110px" },
{ field: "ShipCountry", title:"Ship Country", width: "110px" },
{ field: "ShipAddress", title:"Ship Address" },
{ field: "ShipName", title: "Ship Name", width: "300px" }
]
});
}
$('#expand').click(function(e){
var grid = $("#grid").data("kendoGrid");
$( ".k-master-row" ).each(function( index ) {
grid.expandRow(this);
});
})
$('#collapse').click(function(e){
var grid = $("#grid").data("kendoGrid");
$( ".k-master-row" ).each(function( index ) {
grid.collapseRow(this);
});
})
</script>
</div>