ext 条件隐藏'操作'列

需要隐藏默认区域的操作列,其他区域不隐藏。怎么做?... 需要隐藏默认区域的操作列,其他区域不隐藏。怎么做? 展开
 我来答
百度网友ce8a783
推荐于2016-06-28 · TA获得超过318个赞
知道小有建树答主
回答量:349
采纳率:50%
帮助的人:267万
展开全部
Ext.create('Ext.grid.Panel', {
title : 'Action Column Demo',
store : Ext.data.StoreManager.lookup('employeeStore'),
columns : [{
text : 'First Name',
dataIndex : 'firstname'
}, {
text : 'Last Name',
dataIndex : 'lastname'
}, {
xtype : 'actioncolumn',
width : 50,
defaultRenderer : function (v, meta) {
var me = this,
prefix = Ext.baseCSSPrefix,
scope = me.origScope || me,
items = me.items,
len = items.length,
i = 0,
item;
// Allow a configured renderer to create initial value (And set the other values in the "metadata" argument!)
v = Ext.isFunction(me.origRenderer) ? me.origRenderer.apply(scope, arguments) || '' : '';

meta.tdCls += ' ' + Ext.baseCSSPrefix + 'action-col-cell';
for (; i < len; i++) {
item = items[i];

// Only process the item action setup once.
if (!item.hasActionConfiguration) {

// Apply our documented default to all items
item.stopSelection = me.stopSelection;
item.disable = Ext.Function.bind(me.disableAction, me, [i], 0);
item.enable = Ext.Function.bind(me.enableAction, me, [i], 0);
item.hasActionConfiguration = true;
}

v += '<img alt="' + (item.altText || me.altText) + '" src="' + (item.icon || Ext.BLANK_IMAGE_URL) +
'" class="' + prefix + 'action-col-icon ' + prefix + 'action-col-' + String(i) + ' ' + (item.disabled ? prefix + 'item-disabled' : ' ') +
' ' + (Ext.isFunction(item.getClass) ? item.getClass.apply(item.scope || scope, arguments) : (item.iconCls || me.iconCls || '')) + '"' +
((item.tooltip) ? ' data-qtip="' + item.tooltip + '"' : '') + ' />';
}
return v;
},
items : [{
icon : 'extjs/examples/shared/icons/fam/cog_edit.png', // Use a URL in the icon config
tooltip : 'Edit',
handler : function (grid, rowIndex, colIndex) {
var rec = grid.getStore().getAt(rowIndex);
alert("Edit " + rec.get('firstname'));
}
}, {
icon : 'extjs/examples/restful/images/delete.png',
tooltip : 'Delete',
handler : function (grid, rowIndex, colIndex) {
var rec = grid.getStore().getAt(rowIndex);
alert("Terminate " + rec.get('firstname'));
}
}
]
}
],
width : 250,
renderTo : Ext.getBody()
});
可以在“操作列”那重载他的defaultRenderer函数
最好的方式是直接重载Ext-grid-column-Action的defaultRenderer函数,在里面添加事件判断什么的
horse2b
2015-09-14
知道答主
回答量:47
采纳率:0%
帮助的人:7.5万
展开全部
隐藏'srusyti、
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式