Hello ,
The syncfusion grid is pretty dynamic and displays the grid even if we do not define a columnSource.
Assume that I have a grid with the following structure :
In app.component.ts
this.secondChild = {
dataSource: secondDataSource,
queryString: "id",
};
this.firstGrid = {
dataSource: firstDataSource,
queryString: "id",
childGrid: this.secondChild
};
in app.component.html
<ejs-grid
[dataSource] = "someDataSource"
[childGrid] = "firstGrid"
>
</ejs-grid>
Now I havent passed anything as a columnSource for the secondGrid but the grid is displaying fine. How would I remove a specific field/column inside the secondChildGrid ?
Also how would I run queryCellInfo for the childGrids ?
Warm Regards
Vigneswaran