Hello,
First I want to say that I'm new to the ExtJs community and I dont have much time to implement this on my current project.
I search a lot on google and here on forums but didn't found the solution, maybe somebody can help me.
My scenario:
* I use ExtJs with an ASP.Net MVC application.
I have a Ext.TabPanel with 2 tabs, in each tab I have 2 forms with some filter fields for searching in my DB, and a Search and Clear buttons.
All extjs grid examples that I found, the render occurs on Ext.onReady (at the page load), what I need to do is:
On the load o my page, only render my search filter fields, and after I Click on "Search" button I need to call my server side method to load and render my Grid.Panel.
eg.
Its clear ? How can I do that ? I have to use listeners ?Code:Button.Click = function ( myStore.load({ params: { page: 1, limit: 10} }); myGrid.Render();
ps: asp.net mvc examples would be great.
Thanks
Bruno