Click here to Skip to main content
15,890,123 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all, I'm using .Net Forms and the JQGrid.

I used to populate the grid like this:
C#
DataTable dtResult =GetFilteredReportData(Convert.ToInt32(ddlparking.SelectedValue));
   JQGrid1.DataSource = dtResult;
   JQGrid1.DataBind();

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?
Posted
Updated 30-Aug-12 19:15pm
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900