EXT JS:对于日期字段,如何更改弹出日历的背景颜色

时间:2013-08-07 18:37:53

标签: extjs

我在ExtJS中有一个日期字段。

 {
     xtype: 'datefield',
     anchor: '100%',
     itemId: 'Date',
     emptyText: 'mm/dd/yyyy',
     name: 'date',
     fieldLabel: 'From Date',
     labelStyle: 'font-family:Arial;font-style:normal;font-size:12px;text-align:right;',
     margin: "10 5 5 5"
  }

弹出的日历背景和日期写在黑色上。有什么办法可以将字体颜色/背景颜色改为白色吗? 我浏览了Senchs文档,但没有找到任何有用的东西。

谢谢

1 个答案:

答案 0 :(得分:0)

您可以使用CSS:

.x-datepicker-inner {
    background-color: #bada55 !important;
}

.x-datepicker-date {
    color: red !important;
}

http://jsfiddle.net/W4aDB/1/