Is there a different way from a binding script to be able to show nothing when the text is null?
I have a label and I want to show nothing instead of null when null is received.
Any idea? In table columns exists a property that is called "nullFormat" and allows you to show it as you wish.
Current aproach is using a binding expression script: if(isNull({value}), "", {value})
My question is not about the binding, is about a style property. Is there a property that when null recieved prints "blank? Same as the nullFormat in table columns.
You may be able to apply the 'empty' pseudo class in the stylesheet, and have it set the content, but generally you would need Javascript to do this reliably.