Re: [qooxdoo-devel] Force image reload

2011-10-20 Thread randylb
Thanks for the solution...seems to work well. did not use the nochache solution just appended "?Math.random()" to the setSource call and it reloads every time. I did see a reference to a similar solution earlier in the thread but I did not apply it like this. Great...thanks again -- View this me

Re: [qooxdoo-devel] Force image reload

2011-10-19 Thread Sebastien Valette
Hi, Le 19/10/2011 20:59, randylb a écrit : > Not finding success in any of the methods outlined. > > Trying to reload basic.image that sources a jpeg that has been replaced with > a different image but with the same name (same name is a requirement) > > so far I have tried setSource() to load a di

Re: [qooxdoo-devel] Force image reload

2011-10-19 Thread Eric
erver-not-taken-into-account From: randylb To: qooxdoo-devel@lists.sourceforge.net Sent: Wednesday, October 19, 2011 2:59 PM Subject: Re: [qooxdoo-devel] Force image reload Not finding success in any of the methods outlined. Trying to reload basic.image that sou

Re: [qooxdoo-devel] Force image reload

2011-10-19 Thread randylb
Not finding success in any of the methods outlined. Trying to reload basic.image that sources a jpeg that has been replaced with a different image but with the same name (same name is a requirement) so far I have tried setSource() to load a different image or a bogus image, bogus image with rand

Re: [qooxdoo-devel] Force image reload

2010-10-04 Thread thron7
> Thomas solution works but is not possible for me to use. As it > generates a new URL every time, I waste bandwidth every time a > picture is loaded. This is a mobil app so I must have data > consumption in mind. If the URL is the same I can rely on the cached > copy (with an Etag) and will only

Re: [qooxdoo-devel] Force image reload

2010-10-04 Thread Stefan Andersson
Hej Per-Ola! If I understood you correctly, conditions: 1. dynamic image 2. can not change url Unfortunately, I can not see a way to do it in qooxdoo. Qooxdoo can not control every client browser. Then there is only manipulation of the cache left and that solution must change every client web

Re: [qooxdoo-devel] Force image reload

2010-10-04 Thread Per-Ola Stenborg
Hi Alex and everybody! >The thing here is that the image is only loaded from the server if the >"source" property of the "qx.ui.basic.Image" is >changed. If you set the >source of the image again (with the same URL) the property system of qooxdoo >does not trigger >the "apply" method of the pro

Re: [qooxdoo-devel] Force image reload

2010-10-01 Thread Stefan Andersson
Just tried to minimize your workload by sending the patches. :-) Stefan -- Start uncovering the many advantages of virtual appliances and start using them to simplify application

Re: [qooxdoo-devel] Force image reload

2010-10-01 Thread Martin Wittemann
And as you can imagine, we have other bugs too. So what is more important, having some defects in the code fixed, adding new features, fixing docu bugs... I guess you have to trust our way of ordering tasks for it's importance. Best, Martin Von meinem iPad gesendet Am 01.10.2010 um 13:57 schrie

Re: [qooxdoo-devel] Force image reload

2010-10-01 Thread Stefan Andersson
T! Maybe it is time to document this now! We sent a doc patch before. Stefan -- Start uncovering the many advantages of virtual appliances and start using them to simplify applic

Re: [qooxdoo-devel] Force image reload

2010-10-01 Thread thron7
> property. So to force the change of the image source you need to > change the source to another source (like "qx/static/blank.gif"). It suffices if you "fake" a different URL, e.g. by appending a non-sensical URL param ("/my/image.png?"+math.random()). (See also bug#4064). T. ---

Re: [qooxdoo-devel] Force image reload

2010-10-01 Thread Alexander Steitz
Hi Per-Ola, > I use qx.ui.basic.Image() to display images and and .setSource() to > load and change the displayed image, like a galley. This works great. > The first time the image is loaded it is fetched from the server and > the following it is read from memory and/or cache (at least not from >

[qooxdoo-devel] Force image reload

2010-10-01 Thread Per-Ola Stenborg
Hi all! I use qx.ui.basic.Image() to display images and and .setSource() to load and change the displayed image, like a galley. This works great. The first time the image is loaded it is fetched from the server and the following it is read from memory and/or cache (at least not from the server)