2009-09-09 83 views

回答

5

gotoCurrent控制ButtonPanel中「今日」按鈕的行爲。

select a date != today's date, click this button: 

if gotoCurrent = false -> today's date is shown 
if gotoCurrent = true -> selected date is shown 

禁用今天的高亮:

搜索:在文件ui.datepicker.js

(printDate.getTime() == today.getTime() ? ' ui-state-highlight' : '') + 

,並刪除亮點類(或刪除整條生產線):

(printDate.getTime() == today.getTime() ? '' : '') + 

你應該得到你想要的。

+0

好吧,這是有道理的。我怎樣才能阻止「今天」突出顯示? – 2009-09-09 12:21:46

+0

@Andrew - 你應該能夠在當天刪除CSS類 – 2009-09-09 13:51:27

+2

謝謝你的答案。但是,我使用Google託管的JQuery庫 - 因此對腳本的修改不是一種選擇。我想我應該用JQuery UI提交功能請求。 – 2009-09-11 11:53:09