为 extjs grid 增加多个toolbar工具栏 的方法

在创建grid时候这个是必须的:

 tbar : [{ id : 'newWindow', text : '工具', iconCls : 'add', handler : function() { showMemerAddWindow(); //显示表单所在窗体 } }],

 

 创建完成后可再新建一个toolbar:

tbar2 = new Ext.Toolbar({ renderTo : grid.tbar,//其中grid是上边创建的grid容器 items : ['第二行工具栏', '-', { text : '查询', iconCls : 'search' }, '-'] });

你可能感兴趣的:(ext)