Hi Arron,
Thanks for contacting Syncfusion’s support.
We have analyzed your query and you need to render the responsive Grid with 100% of width and height. To set the width and height in percentage as a string, we suggest you to use ‘@’ symbol before setting the width and height in scrollSettings for grid when using Tag helper and please refer to the below code example.
<ej-grid id="Grid" datasource=ViewBag.data allow-scrolling="true" is-responsive="true" min-width="700">
<e-scroll-settings width=@("100%") height=@("100%")></e-scroll-settings>
. . .
</ej-grid>
|
Regards,
Saravanan A.