asp.net - AngularJS ng-grid for large datasets -


can please suggest how can display dataset 20k records example grid scrolling?

the problem facing json sent web service exceeds maxjsonlength. have tried changing web.config use following

 <configuration>   <system.web.extensions>    <scripting>        <webservices>            <jsonserialization maxjsonlength="2147483644"/>        </webservices>    </scripting> 

i have tried changing serializer's maxjsonlength

 serializer.maxjsonlength = int32.maxvalue; 

but json bigger that.

i have tried using http://ui-grid.info/docs/#/tutorial/402_gridisscrolling dont think addresses issue when json length bigger max.

please suggest or other way can render grid.

you can use paging , if don't want have paging button can use virtual scrolling.

ng-grid support virtual scrolling in configuration options ( setting virtualizationthreshold ) . or can use kendo grid http://demos.telerik.com/kendo-ui/grid/virtualization-remote-data

this mean webservice need support paging.


Comments

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -