I want to implement remote paging in ext.net gridpanel. Our existing project uses MVP design pattern.
All the code related to creations of column mode1 and databind is implemented on server side.

I am using pageproxy for remote paging and used onReadData event for binding data to gridpanel, however onReadData is called continuously for multiple times.

Even after scrolling the gridpanel triggers the onreadData event.



Below is the .aspx code
 <Store>
                                <ext:Store ID="store1" runat="server" OnReadData="StoreGrdAssumptions_ReadData" >
                                    <Model>
                                         <ext:Model ID="Model1" runat="server">
                                        </ext:Model>
                                      
                                    </Model>
                     
                                    <Proxy>
                                      
                                        <ext:PageProxy  >
                                         
                                        </ext:PageProxy>
                                       
                                    </Proxy>
                                </ext:Store>
                                
                            </Store>
We are using ext.net version 2.5.1