设置Ext Grid 表头及背面背景色

设置Ext Grid 表头及背面背景色

moneFundsDailyReportModifyGrid.on('afterrender', function(
								grid) {
							var elments = Ext.select(".x-grid3-header");//.x-grid3-hd
							elments.each(function(el) {
										el.setStyle("background-color", '#CBBC82');// 设置不同的颜色
									}, this)
							var elments = Ext.select(".x-grid3-scroller");
							elments.each(function(el) {
										el.setStyle("background-color", '#f6f2d4');// 设置不同的颜色
									}, this)
						});

设置之前:

设置之后:

你可能感兴趣的:(ext)