Extjs Grid header background color g改变

简介:

Css 代码:

1
2
.my-custom-grid- red  .x-column-header-inner {zoom:  1 ; position relative ; white-space nowrap ; line-height 22px ; padding 0px  6px  12px  96px ; background-color : red ;}
.my-custom-grid- green  .x-column-header-inner {zoom:  1 ; position relative ; white-space nowrap ; line-height 22px ; padding 0px  6px  12px  96px ; background-color : green ;}

Extjs  Grid  gridcolumn 代码:


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{          
text:  'Nom du compte' ,          
flex: 1,         
  sortable:  true ,          
dataIndex:  'name_account' ,         
  baseCls: 'my-custom-grid-red' ,                
width: 260                   
},
{         
  text:  'Ville' ,         
  sortable:  true ,         
  dataIndex:  'ville' ,         
  width: 200,              
  baseCls: 'my-custom-grid-green'      
}

把baseCls 改为  cls
















本文转自yunlielai51CTO博客,原文链接:http://blog.51cto.com/4925054/1397651,如需转载请自行联系原作者

相关文章
|
前端开发
|
JavaScript
background-color设置为透明的方法
background-color设置为透明的方法
162 0
|
前端开发
每日一学—CSS overflow与text-overflow与white-space属性
CSS overflow 属性可以控制内容溢出元素框时在对应的元素区间内添加滚动条。text-overflow 属性指定当文本溢出包含它的元素时,应该如何显示。可以设置溢出后,文本被剪切、显示省略号 (...) 或显示自定义字符串(不是所有浏览器都支持)。white-space属性指定元素内的空白怎样处理。
293 0
每日一学—CSS overflow与text-overflow与white-space属性
关于 QWidget无法使用stylesheet设置自身backgound-color(背景色)和border-image(背景图片) 的解决方法
关于 QWidget无法使用stylesheet设置自身backgound-color(背景色)和border-image(背景图片) 的解决方法
关于 QWidget无法使用stylesheet设置自身backgound-color(背景色)和border-image(背景图片) 的解决方法
|
数据采集 前端开发 JavaScript
|
Web App开发 前端开发 Android开发
|
Web App开发 前端开发 Android开发