Hi,
a label is filled as a result from my rest-service
i'd like to set the visible-property of a label to false if the label text is"undefinded".
I tried the following:
if ($('#zitat').text=="undefined") {$('#zitat').attr('visible',false);}
But it doesn't work....