`
xiaojianbo
  • 浏览: 33381 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

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;
}

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics