Get the results from the database in a datatable and then bind it to the grid.
If I do this on Page Load, it works great.
For this page there are some search criteria that needs to be entered then a "Search" button is pressed.
If I take away the binding code from the page load event and put that code in the Search click event nothing gets populated even though when I debug I see the datatable being populated correctly.
If i put the the binding code back into page load event, it will load the grid. AND if I press the "Search" button the results based on the search filters are returned and bound to the grid.
Is there something missing that would allow me to populate the grid just by the button event?
cr8zymike
Member
2 Points
20 Posts
jqGrid - populate using a button event?
May 01, 2012 10:26 PM|LINK
Hello,
I'm using .Net Forms and the jqGrid.
Based on the example used on their website:
Get the results from the database in a datatable and then bind it to the grid.
If I do this on Page Load, it works great.
For this page there are some search criteria that needs to be entered then a "Search" button is pressed.
If I take away the binding code from the page load event and put that code in the Search click event nothing gets populated even though when I debug I see the datatable being populated correctly.
If i put the the binding code back into page load event, it will load the grid. AND if I press the "Search" button the results based on the search filters are returned and bound to the grid.
Is there something missing that would allow me to populate the grid just by the button event?
Thanks.
cr8zymike
Member
2 Points
20 Posts
Re: jqGrid - populate using a button event?
May 01, 2012 10:40 PM|LINK
I just found it.
I'm supposed to use the DataRequesting event and that would be set in the jqGrid.
THanks to those who took a look.
NitinChh
Member
2 Points
2 Posts
Re: jqGrid - populate using a button event?
Oct 03, 2012 09:40 PM|LINK
Hi,
How were you able to do that? Since i am also trying to do the same.
1) I need to create a drop-down list using java script
2) on select of an item from drop downlist - i want to load data in jqGrid.
Please help!