下面的代码采用一个数据存储,该数据存储旨在将 Windows 注册表项保存在平面视图中(我不想要树视图)。
键的列用于分组,一旦展开键,就可以查看该键下的所有值。这些值根据获取(外部)的评分进行着色,评分存储在“结果”字段中。
我的问题
我希望只有在其所有值的分数都大于 0.0 时才折叠键,否则必须展开键。
我如何/在哪里实现对组进行迭代并决定是否折叠/展开的逻辑?
谢谢!
Ext.onReady (function () {
var store = Ext.create('Ext.data.Store', {
storeId:'registryStore',
// model
fields:['result', 'key', 'type','value','data'],
// enable grouping for the data Store
groupField: 'key',
// the data itself in JSON format
data: {'regkeys':[.....data...]},
// define the JSON data type
proxy: {
type: 'memory',
reader: {
type: 'json',
root: 'regkeys'
}
}
});
// grouping
var grouping = Ext.create('Ext.grid.feature.Grouping',{
startCollapsed: true,
});
var regPanel = Ext.create('Ext.grid.Panel', {
title: 'Registry',
renderTo: Ext.getBody(),
// link to grouping object
features: [grouping],
store: Ext.data.StoreManager.lookup('registryStore'),
// model
columns: [
{ header: 'Result', dataIndex: 'result'},
{ header: 'Type', dataIndex: 'type' },
{ header: 'Value', dataIndex: 'value', width:250,felx:1},
{ header: 'Data', dataIndex: 'data', flex:1}
],
// color's each row according to score
viewConfig: {
getRowClass: function(record, rowIndex, rowParams, store) {
if (record.get("result") == 0.0) { // orange background
return 'row-unknown';
}
else if (record.get("result") < 0.0) { // red background
return 'row-bad';
}
return 'row-good'; // green background
}
},
// collapse/expand all botton
tbar: [{
text: 'collapse all',
handler: function (btn) {
grouping.collapseAll();
}
},{
text: 'expand all',
handler: function (btn) {
grouping.expandAll();
}
}],
}); //Ext.create
}); //Ext.onReady