Hi,
We have used child grid in one of our pages. But child grid is not rendering properly. Grid data is not displayed under column headers.
Code snippet below:
this.workflowdata = (data);
//Load ChildUserGrid
this.childGrid = {
dataSource: this.workflowdata,
queryString: 'Id',
load() {
this.registeredTemplate = {};
},
columns: [
{ field: 'Description', headerText: 'Description', width: 150, height: 200 },
{ field: 'CreatedBy', headerText: 'Created By', width: 150, height: 200 },
{ field: 'UpdatedBy', headerText: 'Updated By', width: 150, height: 200 },
{ field: 'CreatedDateTime', headerText: 'Created On', width: 150, height: 200 },
{ field: 'IsManualBranchSelection', headerText: 'Allow Branch Selection Manually', width: 150, height: 200, displayAsCheckBox:'true' },
],
};
Please help