Extjs4设置Ext.grid.Panel设置row颜色和高度

viewConfig : {
		forceFit : true,
		getRowClass : function(record, index) {
			if (index % 2 == 0)
				return "red";
			else
				return "green";
		}
},

 

<style type="text/css">
.red .x-grid-cell {
	background-color: #FFFFDD;
	height: 30px;
}

.green .x-grid-cell {
	background-color: #CED9E7;
	height: 30px;
}

 

你可能感兴趣的:(row颜色,Ext.grid.Panel)