I am using jqGrid and I don’t want the grid to autoload.
I only want the grid to load once a user enters filter criteria.
Any advice?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It seems the same question as I answerd before. You can define jqGrid with
datatype:'local'parameter and after the user set filter criteria you can change it otdatatype:'json'with respect ofBy the way you can send the filter criterias to the server with respect of
postDataparameter of jqGrid. See How to filter the jqGrid data NOT using the built in search/filter box for details.