Hello! It is possible to programmaticaly change image in the Image component from JavaScript ? For example, change image when I click on the image. Thank you!
hi Valeriy,
Yep. here is some old code that should work:
-------------------
var input = Tiggzi('imageURL');
Tiggzi('image1').attr('src', input.val());
=================
imageURL is an input field with the value of the URL for the image you want.
image1 is the image component.
HTH
hi Valeriy,
Yep. here is some old code that should work:
-------------------
var input = Tiggzi('imageURL');
Tiggzi('image1').attr('src', input.val());
=================
imageURL is an input field with the value of the URL for the image you want.
image1 is the image component.
HTH
Hi Phillip,
Thank you very much!
That's what I've done currently http://goo.gl/vvlkHb (Mobile Web App)
and http://yadi.sk/d/_Z0lpxk0GdyxQ (Mobile Native App for Android)
:-)
Regards,
Valeriy