apache1048
Newbie
Posts: 1
Registered: 7/12/2007
Location: Norwood MA
Member Is Offline
|
| posted on 7/12/2007 at 02:25 PM |
|
|
Tomcat6 and Java 1.6.0_02 - Object doesn't support this action
Having changed versions to Tomcat6 and Java 1.6.0_02 running under Windows server 2003 I now get
"Object doesn't support this action"
Line: 90
Char: 3
Code: 0
The code has not changed (JSP) from the original working version. Are there issues with the latest Tomcat or Java?
Any assistance is appreciated.
Code is shown below.
<script language="JavaScript" src="calendar2.js"></script>
.....
<tr>
<td>
Date Completed:<input TYPE=HIDDEN NAME=h_fakedate2 SIZE=6 value="">
</td>
<td>
Click calendar to change:<br>
<input type="Text" name="h_completed" value="" READONLY SIZE="9">
<a href="javascript:cal7.popup();"><img src="images/cal.gif" width="16" height="16" border="0" alt="Click Here to Pick up the
date"></a>
</td>
</tr>
...
<script language="JavaScript">
var cal7 = new calendar2(document.forms['helplog'].elements['h_completed']);
cal7.year_scroll = true;
cal7.time_comp = true;
</script>
|
|
|
tigra
Administrator
Posts: 1982
Registered: 6/17/2002
Location: US, CO
Member Is Offline
|
| posted on 7/12/2007 at 05:03 PM |
|
|
tigra calendar is pure client side javascript component, unless there is a difference in the HTML output that the web server generates the calendar
will not even know you upgraded software on the server side. You can use view->source feature of your browser to view/save the client side output.
If you can't find the problem there then submit a support ticket attaching HTML output and other calendar files.
|
|
|