X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=org.argeo.slc.webapp%2Fsrc%2Fmain%2Fwebapp%2Fargeo-ria-lib%2Fslc%2Fclass%2Forg%2Fargeo%2Fslc%2Fria%2Fexecution%2FValue.js;h=b5944a019ab09ac17b5d7309ecaa5ebdf1c9358d;hb=ec2898121c88966ac4d49d549d55107f26ccbb4b;hp=d31cf6b3af4c071b1952b1120a2893c9bf985c13;hpb=c841d0caafa5580b4149bd06ae2ac443c181e5de;p=gpl%2Fargeo-slc.git diff --git a/org.argeo.slc.webapp/src/main/webapp/argeo-ria-lib/slc/class/org/argeo/slc/ria/execution/Value.js b/org.argeo.slc.webapp/src/main/webapp/argeo-ria-lib/slc/class/org/argeo/slc/ria/execution/Value.js index d31cf6b3a..b5944a019 100644 --- a/org.argeo.slc.webapp/src/main/webapp/argeo-ria-lib/slc/class/org/argeo/slc/ria/execution/Value.js +++ b/org.argeo.slc.webapp/src/main/webapp/argeo-ria-lib/slc/class/org/argeo/slc/ria/execution/Value.js @@ -103,10 +103,10 @@ qx.Class.define("org.argeo.slc.ria.execution.Value", { var valueTag = ''; var specAttribute = ''; if(this.getSpecType() == "primitive"){ - valueTag = this.getValue(); + valueTag = (this.getValue()?this.getValue():''); specAttribute = ''+valueTag+''; }else if(this.getSpecType() == "ref"){ - valueTag = ''+this.getValue()+''; + valueTag = (this.getValue()?''+this.getValue()+'':''); specAttribute = ''+valueTag+''; } return ''+specAttribute+'';