Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have grid with some pictures, I edit my picture and I save my picture, then I reload the store and refresh the grid but the picture doesn't change, because browser cached the old picture in grid. But when I reload my browser it works. How can I reload or refresh the grid that my new picture load? I should mention: I must save picture with same name. I used this statement but it didn't work:

Ext.getCmp('grid').getView().refresh(true);
Ext.StoreMgr.lookup('store').removeAll();
Ext.StoreMgr.lookup('store').reload();
share|improve this question

1 Answer

up vote 2 down vote accepted

You should append a cache buster to the url to skip browser's cache.

http://example.com/image1.jpg?cb=1
http://example.com/image1.jpg?cb=2
share|improve this answer
2  
I think timestamp would be better ?cb=1323605313966. – Molecular Man Dec 11 '11 at 12:09
thank you . . . – masoud sharifi Dec 15 '11 at 5:58

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.