form单选框
Posted flying-boy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了form单选框相关的知识,希望对你有一定的参考价值。
form中的单选框:
var resultStartRadio = new Ext.form.RadioGroup({
id : ‘resultStartRadio‘,
name :"formState",
style : "text-align:left",
columns : 2, //columns表示每一行显示的个数
columnWidth : 0.2,
fieldLabel :("inspect" === processCode?‘被联系专业意见‘:‘<span style="color:red">*</span>被联系专业意见‘) ,
xtype : ‘radiogroup‘,
items : [
{ boxLabel : ‘退回‘,name : ‘formState‘,inputValue : ‘N‘,readOnly :false},
{ boxLabel : ‘执行‘,name : ‘formState‘,inputValue : ‘Y‘,readOnly : false)} ],
allowBlank : false
})
以上是关于form单选框的主要内容,如果未能解决你的问题,请参考以下文章