Extjs中单选框垂直排列和水平排列_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > Extjs中单选框垂直排列和水平排列

Extjs中单选框垂直排列和水平排列

 2014/9/18 13:06:12  zyjustin9  程序员俱乐部  我要评论(0)
  • 摘要:1.垂直排列方式:直接在FormPanel中用xtype:"radio"的单选框varaddForm=newExt.FormPanel({frame:true,labelWidth:60,labelAlign:"right",items:[{xtype:"radio",fieldLabel:"评价方式",name:"etype",inputValue:"1",boxLabel:"事前评价"},{xtype:"radio",name:"etype",inputValue:"2",boxLabel
  • 标签:JS

1.垂直排列方式:直接在FormPanel中用xtype:"radio"的单选框

class="js">var addForm = new Ext.FormPanel({
	frame: true,
	labelWidth: 60,
	labelAlign: "right",
	items:[
		{
			xtype:"radio",
			fieldLabel:"评价方式",
			name:"etype",
			inputValue:"1",
			boxLabel:"事前评价"
		},{
			xtype:"radio",
			name:"etype",
			inputValue:"2",
			boxLabel:"事中评价"
		},{
			xtype:"radio",
			name:"etype",
			inputValue:"3",
			boxLabel:"事后评价"
		}
	]
});

?

?

?

2.水平排列方式:使用RadioGroup

//1.创建radioGroup
var radioGroup = new Ext.form.RadioGroup({
	fieldLabel:"评价类型",
	width:250,
	items:[{
		layout: 'column',
		items: [
			{
				name:"etype",
				inputValue:"1",
				boxLabel:"事前评价"
			},{
				name:"etype",
				inputValue:"2",
				boxLabel:"事中评价"
			},{
				name:"etype",
				inputValue:"3",
				boxLabel:"事后评价"
			}
		]
	}]
});

//2.创建FormPanel
var addForm = new Ext.FormPanel({
	frame: true,
	labelWidth: 60,
	labelAlign: "right",
	items:[
		radioGroup
	]
});

?

?

  • 大小: 1.7 KB
  • 大小: 1.3 KB
  • 查看图片附件
发表评论
用户名: 匿名