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

How do I reload the data of a grid using a JsonRestStore? With a normal store I could call close() and then set the url property again, but a JsonRestStore does not have an url, only a target. I also tried to set the store of the grid again using setStore, but this killed the grid completely.

share|improve this question

1 Answer

up vote 1 down vote accepted

You can call the setQuery method of the grid.

gridObject.setQuery({id:value});

Also, make sure that your jsonRestStore has the property cachingFetch set to FALSE. Otherwise it will just fetch stuff from local memory instead of server. (This behaviour may be good or bad depending on your needs)

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.