我遇到了一个问题,在尝试显示/隐藏网格列时,ext-all.js文件挂起。
我在Mozilla Firefox 25.0上使用Extjs 4.1.2。操作系统是ubuntu 12.10,只是为了澄清。
当用户通过插件编辑行时,隐藏字段仅显示,以便用户可以编辑它们。编辑完成后,这些列将再次隐藏。
Controller.js:
var hiddenColumns = []; //global array for storing columns
init: function() {
this.control({
...
'myGrid': {
beforeedit: function() {
me.columnsVisibility('show');
},
afterrender: function(){
var me = this,
formDataPanel = me.getFormDataPanel(),
activeGrid = formDataPanel.getLayout().getActiveItem();
for (i=0; i < activeGrid.columns.length; i++) {
if (activeGrid.columns[i].hidden) {
Ext.Array.push(hiddenColumns, activeGrid.columns[i]);
}
}
},
edit: function(editor, e) {
var me = this,
usersStore = me.getStore('Users'),
alias = me.getUserAlias(),
record = usersStore.findRecord('email', alias, false, true, true),
fdupdate = record.get('fdupdate');
me.columnsVisibility('hide');
if (fdupdate == 't') {
try {
e.store.sync();
}
catch (e) { }
e.record.commit();
} else {
var store = me.getStore('Inspection');
store.rejectChanges();
Ext.Msg.alert('Alert!','This function is not currently available for you');
}
},
...
}
});
},
...
columnsVisibility: function(visible){
for (var i=0; i < hiddenColumns.length; i++) {
if (visible == 'hide') {
hiddenColumns[i].hide();
} else if (visible == 'show') {
hiddenColumns[i].show();
}
}
},
...
myGrid.js:
initComponent: function() {
var filters = {
ftype: 'filters',
// encode and local configuration options defined previously for easier reuse
encode: false, // json encode the filter query
local: true
},
Ext.apply(this, {
title: 'Inspection',
id: 'inspection', // This is required since title can be changed by filter functions to update status of the grid.
store: 'Inspection',
features: [filters],
selModel: Ext.create('Ext.selection.CheckboxModel', { checkOnly: true }),
plugins: [
Ext.create('Ext.grid.plugin.RowEditing', {
clicksToEdit: 2
})
],
columns: [{
text: 'ID',
width: 35,
dataIndex: 'id'
},{
text: 'Record Name',
dataIndex: 'record_name',
width: 70,//flex: 1,
hidden: true,
editor: {
queryMode: 'local',
displayField: 'record_name',
valueField: 'record_name',
editable: false
},
filter: {
type: 'string'
}
},{
text: 'Date Created',
dataIndex: 'date_created',
width: 150,
filter: {
type: 'string'
}
}]
});
this.callParent(arguments);
}
});
虽然我的代码确实按预期工作,但它会导致我的浏览器挂起一段时间,然后提示我一条消息,告知脚本正忙/无响应(Script: http://localhost/lib/ext-4.1.2/ext-all.js:18
)
我不确定这个问题是否与我的extjs版本,我的代码或浏览器有关。如果有人能提供帮助,我将不胜感激。
答案 0 :(得分:0)
隐藏和显示可能是昂贵的操作,因为它们涉及操纵DOM和随后的浏览器重排。对于几行,它不会产生相当大的延迟,但随着行数的增加,您可能会遇到减速。
我可能会考虑打开一个单独的Ext窗口,其中包含一个包含所有要编辑的字段的表单,而不是显示和隐藏网格所有行的列。