Hallo!
I have a strange problem in Nuclos. Version 4.25.8.
There is conditional display for Klonen aktiv (dynamisch) button defined:
def sStatus = context."#{NAMESPACE.Zeiterfassungposition.status}"
if (sStatus == null || sStatus.trim().isEmpty() || sStatus == 'In Genehmigung') {
return true;
}
return false;
It works fine in Java-Client but the button just not displayed in Web-Client.
The only condition which i prove to work consistently if i define condition as ‚return true;‘ Then all is ok both in Web and Java.
Do you have any ideas why it is could be a problem?