extjs 中 fieldset 的checkbox 的默认值问题

时间:2022-09-12 05:06:39
extjs 中 fieldset中的checkboxToggle设为true时 会有一个 checkbox 但是这个checkbox 默认是勾上的,怎么才能让他默认不够呢 

8 个解决方案

#1


你用的extjs 哪个版本?
去看看API啊,肯定有设置初始值的

#2


Api 文档中没找到怎么设置的

#3


var fp1=new Ext.form.FieldSet({
title:"*****",
layout:"fit",
width:307,
height:95,
items:[
{
    xtype:"checkboxgroup",
    columns: 3,
    allowBlank: false,
    items:
    [
{
name:"cb-auto-1",
id:'cb1',
boxLabel:"档案编号",
inputValue: 1,
checked: true
}
        ,
{
name:"cb-auto-2",
id:'cb2',
boxLabel:"负 责 人",
inputValue: 2
},
{
name:"cb-auto-3",
id:'cb3',
boxLabel:"参 加 人",
inputValue: 3
},
{
name:"cb-auto-4",
id:'cb4',
boxLabel:"经费预算",
inputValue: 4
}
]
}
]
});


用这种方法,怎么样。checked: true 设定是否选中。

#4


collapsed 
这个属性。

#5


谢谢4楼,给出这个属性

#6


引用 4 楼 wxr0323 的回复:
collapsed 
这个属性。

+1

#7


问题以前已经解决了,一直忘了来结贴不好意思

#8


  请问一下 就是我把 fieldset的collapsed设置为true 为什么我的表单布局全部乱啦.....

#1


你用的extjs 哪个版本?
去看看API啊,肯定有设置初始值的

#2


Api 文档中没找到怎么设置的

#3


var fp1=new Ext.form.FieldSet({
title:"*****",
layout:"fit",
width:307,
height:95,
items:[
{
    xtype:"checkboxgroup",
    columns: 3,
    allowBlank: false,
    items:
    [
{
name:"cb-auto-1",
id:'cb1',
boxLabel:"档案编号",
inputValue: 1,
checked: true
}
        ,
{
name:"cb-auto-2",
id:'cb2',
boxLabel:"负 责 人",
inputValue: 2
},
{
name:"cb-auto-3",
id:'cb3',
boxLabel:"参 加 人",
inputValue: 3
},
{
name:"cb-auto-4",
id:'cb4',
boxLabel:"经费预算",
inputValue: 4
}
]
}
]
});


用这种方法,怎么样。checked: true 设定是否选中。

#4


collapsed 
这个属性。

#5


谢谢4楼,给出这个属性

#6


引用 4 楼 wxr0323 的回复:
collapsed 
这个属性。

+1

#7


问题以前已经解决了,一直忘了来结贴不好意思

#8


  请问一下 就是我把 fieldset的collapsed设置为true 为什么我的表单布局全部乱啦.....