瀏覽代碼

修正表单单选框选项不显示的问题

huqi 5 年之前
父節點
當前提交
fd2f008e54
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      o2web/source/x_component_process_Xform/Radio.js

+ 2 - 2
o2web/source/x_component_process_Xform/Radio.js

@@ -113,7 +113,7 @@ MWF.xApplication.process.Xform.Radio = MWF.APPRadio =  new Class({
 
                 var radio = new Element("input", {
                     "type": "radio",
-                    "name": this.json.properties.name || flag+this.json.id,
+                    "name": (this.json.properties && this.json.properties.name) ? this.json.properties.name : flag+this.json.id,
                     "value": value,
                     "showText": text,
                     "styles": this.json.buttonStyles
@@ -253,4 +253,4 @@ MWF.xApplication.process.Xform.Radio = MWF.APPRadio =  new Class({
         }
     }
 	
-}); 
+});