Solved
How do I know if an IMAGE property has a value?
How can I check from JavaScript whether the content of an image property has a value or the default value 'image not available'?
BR
Dimitri
How can I check from JavaScript whether the content of an image property has a value or the default value 'image not available'?
BR
Dimitri
Try like this
let hasImage = me.imageProperty.length !== 0;
If no image is set the length should be 0
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.