Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an aspx page where I select some input parameters, and pass them to my business logic layer from a submit button, which in turn returns data formatted for the jqGrid. So, I don't want to display the grid when the page first loads - I want to select my parms, press submit, then display the grid. Furthermore, I'd want to re-display the grid if different parms are selected and submit is clicked again. I've spent the morning looking for a solution, but have not been successful.

share|improve this question
What have you tried so far? – Justin Ethier May 25 '12 at 17:06
I have some examples working with local data but in my application, the data is not available on initial page load. I'm returning a string formatted as JSON wich comes from an arraylist. I do this by the following code: sJSON = serializer.Serialize( aryList ). This is working, but I don't know how to give it to the jqGrid when I press the submit button - I'm thinking I'll use something like url: Default.aspx/GetJSON method. I have seen more examples on how to build the grid in a function call, but I still don't understand how to call the java function from code behind. – Brian May 25 '12 at 19:14
Also, sJSON = serializer.Serialize( aryList ) doesn't give me total: "xxx", page: "yyy", records: "zzz", rows : [ {id:"1", cell:["cell11", "cell12", "cell13"]}, {id:"2", cell:["cell21", "cell22", "cell23"]}, ... It just gives me rows – Brian May 25 '12 at 19:17

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.