johanneke
Junior Member
Posts: 2
Registered: 1/9/2007
Location: here
Member Is Offline
|
| posted on 1/9/2007 at 08:43 AM |
|
|
page cannot be displayed (not 404) error
Weird problem,
When i call my tigra calendar .html page in a separate browserwindow with no url query (leave the "?date...." part off, it shows fine, only the
month navigation doesn't work.
When i call it the normal way with full url query, the pop up window gives a cannot find server errror???????
Any ideas??
|
|
|
johanneke
Junior Member
Posts: 2
Registered: 1/9/2007
Location: here
Member Is Offline
|
| posted on 1/9/2007 at 08:49 AM |
|
|
Have to add this info...
When i call it from the form,( let 's say the normal way) leaving the url querystring off, it shows fine, with the query, server not found.....
Really frustrating after hours testing....
Thanks for any help
|
|
|
tigra
Administrator
Posts: 1982
Registered: 6/17/2002
Location: US, CO
Member Is Offline
|
| posted on 1/9/2007 at 05:20 PM |
|
|
use absolute path to calendar.html in window.open(...) statement inside calendar?.js file.
For example:
| Code: | var
obj_calwindow = window.open(
'/scripts/tigra_calendar/calendar.html?datetime=' + this.dt_current.valueOf()+ '&id=' + this.id,
'Calendar', 'width=200,height='+(this.time_comp ? 215 : 190)+
',status=no,resizable=no,top=200,left=200,dependent=yes,alwaysRaised=yes'
);
|
|
|
|