extjs4.0 怎么修改背景颜色和字体

html-css028

extjs4.0 怎么修改背景颜色和字体,第1张

在extjs4.0中修改背景颜色和字体可以用style配置选项:

如下:

Ext.define 'App.your_package.CustomToolbar',

extend: 'Ext.toolbar.Toolbar'

xtype: 'my-custom-toolbar'

style: 'background-color: #112D41font-family:"Times New Roman",Georgia,Serif'

style设置了背景颜色为#112D41,字体为:Times New Roman",Georgia,Serif