Hi Tshepo,
Thanks for contacting Syncfusion support.
If you need to resize the grid according to the browser window resized, we suggest you to enable the isResponsive property in the grid.
To make the grid responsive, we have to include the MinWidth property in your sample. The minwidth property is used to set the minimum width of the responsive grid. If the grid is less than the minwidth then the scrollbar will be displayed to maintain the minimum width.
Find the code example and sample:
$("#Grid").ejGrid({
dataSource: window.gridData,
allowPaging: true,
allowSorting: true,
isResponsive: true,
minWidth: 600,
columns: [
-------------------
]
});
}); |
Refer to the Help document for the responsive.
If we misunderstood your query, please elaborate your requirement it will help us to provide the better solution.
Regards,
Prasanna Kumar N.S.V