1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
# --
# AgentCalendarSmall.dtl - provides HTML form for AgentSpelling
# Copyright (C) 2001-2005 Martin Edenhofer <martin+code@otrs.org>
#
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
# did not receive this file, see http://www.gnu.org/licenses/gpl.txt.
# --
<!-- start Spelling form -->
<script language="JavaScript" type="text/javascript">
<!--
<!-- dtl:block:DateFormatOption -->
function SelectDay(tt, mm, yyyy) {
for(var z=0;z < opener.document.compose.$Data{"Prefix"}Day.length;z++) {
if (opener.document.compose.$Data{"Prefix"}Day.options[z].value == tt) {
opener.document.compose.$Data{"Prefix"}Day.options[z].selected = true;
}
}
for(var z=0;z < opener.document.compose.$Data{"Prefix"}Month.length;z++) {
if (opener.document.compose.$Data{"Prefix"}Month.options[z].value == mm) {
opener.document.compose.$Data{"Prefix"}Month.options[z].selected = true;
}
}
for(var z=0;z < opener.document.compose.$Data{"Prefix"}Year.length;z++) {
if (opener.document.compose.$Data{"Prefix"}Year.options[z].value == yyyy) {
opener.document.compose.$Data{"Prefix"}Year.options[z].selected = true;
}
}
this.close();
}
<!-- dtl:block:DateFormatOption -->
<!-- dtl:block:DateFormatInput -->
function SelectDay(tt, mm, yyyy) {
opener.document.compose.$Data{"Prefix"}Day.value = tt;
opener.document.compose.$Data{"Prefix"}Month.value = mm;
opener.document.compose.$Data{"Prefix"}Year.value = yyyy;
this.close();
}
<!-- dtl:block:DateFormatInput -->
//-->
</script>
<table border="0" width="100%" cellspacing="0" cellpadding="3" cols="1">
<tr>
<th class="mainhead"><a href="$Env{"CGIHandle"}?Action=$Env{"Action"}&Month=$Data{"Back"}&Prefix=$Data{"Prefix"}" class="headeritem"><<</a></th>
<th class="mainhead">$Text{"$QData{"Month"}"} $QData{"Year"}</th>
<th class="mainhead"><a href="$Env{"CGIHandle"}?Action=$Env{"Action"}&Month=$Data{"Next"}&Prefix=$Data{"Prefix"}" class="headeritem">>></a></th>
</tr>
<tr>
<td class="mainbody" colspan="3">
<table border="0" width="100%" cellspacing="0" cellpadding="2">
<tr class="contenthead">
<td>$Text{"Mon"}</td>
<td>$Text{"Tue"}</td>
<td>$Text{"Wed"}</td>
<td>$Text{"Thu"}</td>
<td>$Text{"Fri"}</td>
<td>$Text{"Sat"}</td>
<td>$Text{"Sun"}</td>
</tr>
<!-- dtl:block:Row -->
<tr>
<!-- dtl:block:ColEmpty -->
<th></th>
<!-- dtl:block:ColEmpty -->
<!-- dtl:block:Col -->
<td $Data{"Style"} align="center"><a href="#" onClick="SelectDay($Data{"Day"}, $Data{"Month"}, $Data{"Year"})">$Data{"Day"}</a></td>
<!-- dtl:block:Col -->
</tr>
<!-- dtl:block:Row -->
</table>
</td>
</tr>
</table>
<!-- end Spelling form -->
|