var kGrid = jGrid.kendoGrid({
dataSource: {
transport: {
read: {
url: Main.rootUrl(""),
dataType: "json"
}
}
},
scrollable: false,
columns: [
{ field: "Field1", template: template1 },
{ field: "Field2", template: template2 },
{ field: "Field3", template: template3 },
],
dataBound: function (e) {
/* code */
}
}).getKendoGrid();
Inside a 'tr' of 'k-detail-row' this code is rendering table with empty 'td' of 'k-hierarchy-cell' class and 'td' of 'k-detail-cell' with above grid. How can I remove the 'td' element with k-hierarchy-cell class which is empty.