I cannot work out how to set the CHILD grid column widths and positions. I can set all the master grid column widths and positions.
When calling grid.getOptions(), I can only see a reference to the MASTER grid column properties.
I can set all the master grid column widths and positions with this function:
var grid = $("#kdClaimStatus").data("kendoGrid");
function setColumFormat(){
var options = localStorage["grid-column-options"];
if (options) {
var parsedOptions = JSON.parse(options);
var columns = parsedOptions.columns;
grid.setOptions({ columns: columns });
}
}
But I cannot work out how to set the CHILD grid column widths and positions. I have searched Telerik documentation and cannot find any solution.