Am new to J Query and am trying some samples in http://www.trirand.com/blog/jqgrid/jqgrid.html Where i see column names are written in JS which are displayed in Grid.
I have this requirement to do on JQGrid to show the Column they search every time.
Example: I have standard set of columns to be displayed in the Grid Like student name, Address,Phone number.
Suppose if user search by Student id i need to add Student id as column to the result.
I should show like
"student name, Address,Phone number,StudentID"
If they search by Total
I should show like
"student name, Address,Phone number,Total"
To simplify i need to add one column to JQGrid after user clicks on search.
Can i do this in JQGrid. How can i implement this ?