gpt4 book ai didi

checkbox - 在网格列 ExtJs 中的一行中显示一组复选框

转载 作者:行者123 更新时间:2023-12-01 10:22:11 25 4
gpt4 key购买 nike

我是 ExtJS 的新手,我正在尝试以这种方式显示复选框组:

grid

我有以下代码:

Ext.onReady(function() {

var ct = Ext.create('Ext.container.Viewport', {
layout: 'border',
defaults: {
collapsible: true,
split: true
},
items: [{
title: 'Tasks',
region: 'west',
margins: '5 0 0 0',
cmargins: '5 5 0 0',
width: '50%',
scrollable: true,
bodyStyle: 'padding:10px',
html: MyTest.description
},{
collapsible: false,
region: 'center',
margins: '5 0 0 0',
items: [{
xtype: 'grid',
id: 'MyGridPanel',
title: 'Test Grid',
store: {
fields: ['name', 'permissions'],
proxy: {
type: 'memory',
reader: {type: 'json'}
},
data: [{
name: 'Farms',
permissions:{
'manage': 1,
'clone': 1,
'launch': 0,
'terminate': 0,
'not-owned-farms': 0
}
},{
name: 'Alerts',
permissions:null
},{
name: 'Servers',
permissions:null
},{
name: 'Events and notifications',
permissions:null
},{
name: 'Statistics',
permissions:null
},{
name: 'Roles',
permissions:{
'manage':1,
'clone':0,
'bundletasks':0
}
},{
name: 'Scripts',
permissions:{
'manage':0,
'execute':0,
'fork':0
}
}]
},
columns: [{
text: 'Name',
width: 200,
dataIndex: 'name'
},{
text: 'Permissions',

dataIndex: 'permissions',

// I need to insert here a checkbox groups for elements that have permissions I guess. So what should I use here - renderer, handle?

}],

}]
}]
});

那我应该用什么?例如,如果我使用渲染器(不确定是否可以使用它),我可以接收复选框的所有数据(参见下面的代码),但我不确定如何渲染它。

renderer: function(value, meta, rec, rowIdx, colIdx, store, view) {

var checkboxconfigs = [];
for (var variable in value) {
checkboxconfigs.push({
boxLabel: variable,
name: variable,
inputValue: value[variable],
checked: value[variable]
})
}

var checkboxes = new Ext.form.CheckboxGroup({
id:'chkGroup',
fieldLabel: 'Permissions',
columns: 1,
items: checkboxconfigs
});


// return WHAT?;
}

我将不胜感激!

最佳答案

解决方案:

如果要呈现值,请尝试使用此列定义:

{
text: 'Permissions',
dataIndex: 'permissions',
width: 200,
renderer: function(value, cell) {
var s = '';
for (var index in value) {
s = s + '<input type="checkbox" ';
if (value[index] == 1) {
s = s + 'checked';
};
s = s + '>' + index;
}
return s;
}
}

注意事项:

使用 ExtJS 4.2 测试。

关于checkbox - 在网格列 ExtJs 中的一行中显示一组复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49996076/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com