thierrybo
Posts: 8
|
| Posted: 11/04/2004, 2:34 PM |
|
Hi,
just to say that the 'Date Picker' component does not work with firefox (1.0RC1). If I click on it, I just got a new blank tab with this html source :
<!--JS DatePicker HTML @0-86FD28A5-->
<HTML>
<HEAD>
<TITLE> Date Picker </TITLE>
</HEAD>
<SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript" CHARSET="iso-8859-1">
<!--
var datepickerParentWindow = window.opener;
document.write(datepickerParentWindow.datepickerSource);
//-->
</SCRIPT>
<BODY>
</BODY>
</HTML>
<!--End JS DatePicker HTML-->
and yes, javascript is enabled!
Thierry B.
|
 |
 |
peterr
Posts: 5971
|
| Posted: 11/04/2004, 3:05 PM |
|
Thanks. I'm assuming that you contacted the suport about this.
_________________
Peter R.
YesSoftware Forums Moderator
For product support please visit http://support.yessoftware.com |
 |
 |
Don Safar
|
| Posted: 11/04/2004, 4:03 PM |
|
I have the latest download of firefox (downloaded on 11/03/2004) and I am
not having any problems with the datepicker. I did a view source and the
only difference is -
CHARSET="windows-1252"instead ofCHARSET="iso-8859-1"thierrybo"
<thierrybo@forum.codecharge> wrote in message
news:2418aae8344f95@news.codecharge.com...
> Hi,
>
> just to say that the 'Date Picker' component does not work with firefox
> (1.0RC1). If I click on it, I just got a new blank tab with this html
> source :
>
> <!--JS DatePicker HTML @0-86FD28A5-->
> <HTML>
> <HEAD>
> <TITLE> Date Picker </TITLE>
> </HEAD>
> <SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript" CHARSET="iso-8859-1">
> <!--
> var datepickerParentWindow = window.opener;
> document.write(datepickerParentWindow.datepickerSource);
> //-->
> </SCRIPT>
> <BODY>
> </BODY>
> </HTML>
>
> <!--End JS DatePicker HTML-->
>
>
>
> and yes, javascript is enabled!
>
> Thierry B.
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>
|
|
|
 |
DonB
|
| Posted: 11/04/2004, 9:53 PM |
|
But what about the behavior for popup windows? Set to prevent them? Set to
create tabs from opened links? Or perhaps to not run script on popups (not
sure if this is something configurable, but the first two are).
--
DonB
http://www.gotodon.com/ccbth
|
|
|
 |
thierrybo
Posts: 8
|
| Posted: 11/05/2004, 5:50 AM |
|
I will check Firefox behaviors about pop-up and javascript, but this is a standard Firefox setup, with no change to default settings.
I changed charset to windows-1252, no changes.
Firefox javascript console says :
Error : datepickerParentWindow has no properties
Source File: http://localhost/tests/tests_css/TaskManagerMySQL/DateP...995786846500084
Line : 9
|
 |
 |
thierrybo
Posts: 8
|
| Posted: 11/05/2004, 5:59 AM |
|
OK,
I got it. I need to UNCHECK in:
/Tools/options/advanced/tab browsing/
-> 'Force link opening new windows to open in'
tb
|
 |
 |
neilski
|
| Posted: 11/29/2004, 1:41 PM |
|
The problem is that IE is lenient on typing whereas FireFox requires strong typing.
In IE "form.control.property" will work but for FireFox and Netscape 7.72 you need to use "window.document.form.control.property"
|
|
|
 |