Ext tbar의 여러 줄 표시

1940 단어 htmlext

var tbar2 = new Ext.Toolbar({
		// renderTo : grid4.tbar,
		items : [{
			text : 'text1',
			tooltip : 'information1',
			iconCls : 'option',
			handler : query
		}, '-', {
			text : 'text1',
			tooltip : 'information1',
			iconCls : 'save',
			handler : show
		}]
	});

var grid4 = new Ext.grid.GridPanel({
		id : 'button-grid',
		region : 'center',
		title : '',
		iconCls : 'icon-grid',
		store : estore,
		autoScroll : true,
		cm : cm,
		tbar : new Ext.Toolbar({
			autoWidth : true,
			autoShow : true,
			items : [{
				text : 't1',
				tooltip : 'tip1',
				iconCls : 'option',
				handler : reloadstore
			}, '-', {
				text : 't2',
				tooltip : 'tip2',
				iconCls : 'option',
				handler : closetime
			}]
		}),
		listeners : {
			'render' : function() {
				tbar2.render(this.tbar); // add tbar
			}
		},
		viewConfig : {
			forceFit : true
		},
		bbar : new Ext.PagingToolbar({
			displayInfo : true,
			beforePageText : '  ',
			afterPageText : '   {0}  ',
			firstText : '  ',
			prevText : ' ',
			nextText : ' ',
			lastText : ' ',
			refreshText : ' ',
			pageSize : 18,
			store : etstore,
			displayMsg : '  {0}   {1}   ,   {2}  ',
			emptyMsg : " "

		})
	});


참고:

listeners : {
			'render' : function() {
				tbar2.render(this.tbar); // add tbar
			}
		},

좋은 웹페이지 즐겨찾기