01.02.2020, 15:29
(This post was last modified: 01.02.2020, 15:33 by Erwin van der Zwart.)
Hi,
Yes you can do that (off course) (:
Add a image to your visu with a default remote URL and give it a additional class 'dynamic', add a 250 byte object that holds the dynamic URL, in this sample '1/1/1' and add this to your custom JS:
BR,
Erwin
Yes you can do that (off course) (:
Add a image to your visu with a default remote URL and give it a additional class 'dynamic', add a 250 byte object that holds the dynamic URL, in this sample '1/1/1' and add this to your custom JS:
Code:
$(function(){
if (typeof grp === 'object') {
grp.listen('1/1/1', function(obj, state) {
$('.dynamic').find('img').attr("src", obj.value)
},true);
}
});
Erwin