0

我在 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 文档,但没有发现任何有用的东西。

谢谢

4

1 回答 1

0

您可以使用 CSS :

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

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

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

于 2013-08-07T20:02:33.210 回答