Von: Stefan Andersson [mailto:[email protected]]
Gesendet: Mittwoch, 08. September 2010 11:29
An: [email protected]
Betreff: [qooxdoo-devel] Changing source of Image widget

I have a problem with the Image widget.

using setSource(imageUrl); works fine

but second time I do it and the imageUrl has the same Url it does not work.

The image is delivered by streaming from a Servlet .

Hi, I had a similar problem.

My problem was, that setSource(imageUrl) needs to get a STRING as parameter.

I received the imageUrl from a rpc.CallSync. So I only had to do a .toString, 
then it worked.

setSource(imageUrl.toString());


cheers
Hari

------------------------------------------------------------------------------
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to