Hello,
I have this grids:
<ej:grid runat='server' ID="GdcImpactos" AllowPaging="false" AllowScrolling="True" AllowFiltering="true">
<ClientSideEvents QueryCellInfo="QueryCellInfoImpacDist" RecordDoubleClick="GdcDistribuciones_RecordDoubleClick" />
<PageSettings Template="" />
<FilterSettings ShowFilterBarStatus="false"></FilterSettings>
</ej:grid>
<ej:grid runat='server' ID="GdcDistribuciones" AllowPaging="false" AllowScrolling="True" AllowFiltering="true" >
<ClientSideEvents QueryCellInfo="QueryCellInfoImpacDist" RecordDoubleClick="GdcDistribuciones_RecordDoubleClick" />
<PageSettings Template="" />
<FilterSettings ShowFilterBarStatus="false"></FilterSettings>
</ej:grid>
</div>
And the data is loaded by javascript. Weel, when the data is loaded, the grids show the footer with a text with the number of pages and items, and the grids are configurated to no allow paging.
Thanks!