2
私は以下のxhtmlファイルを持っています:rich:calendar
と私はいくつかの日を無効にしようとしていますusing this example。しかし、javascript関数は呼び出されません。どうしてか分かりません。<rich:calendar>クライアント側で週末を無効にする
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html ... >
<f:view locale="en">
<script type="text/javascript">
function isDayEnabled(day){
var date = new Date(day.date);
return (date.getDay() == 6);
}
function getDisabledStyle(day){
if (!isDayEnabled(day)) return 'rich-calendar-boundary-dates disabledDay';
}
</script>
<h:head>
<style type="text/css">
.disabledDay { background-color:gray; }
</style>
</h:head>
<h:body>
<div id="workspace">
<h:form id="form">
<h:outputText value="Datum: " />
<rich:calendar mode="ajax" id="calendar"
isDayEnabled="isDayEnabled();" dayStyleClass="getDisabledStyle();">
</rich:calendar>
....
お手伝いできますか?
ありがとうございます。この例も以前にも見つかりました。しかし、私は単にそれをxhtmlにコピーして起動しても動作しません。私はカレンダーボタンをクリックすることができません、それは無効です.. – gaffcz
RF 3.3または4.0を使用していますか?そして、これはインクルードテンプレート( ''!を見てください)が、マスターテンプレートの中に ''で含まれていなければならないことを認識しています。これは ''自動的に追加されますか? –
BalusC
RF4.0。ああ、私はそれを知らなかった、私はまだHTMLタグを使用している:(私はそれをより深く見てみるよありがとう! – gaffcz