This topic is locked

Date Picker in FireFox

6/16/2006 4:20:10 AM
PHPRunner General questions
J
jenolan author

Hi still working thru my testing...
When the date picker pops up in FireFox the text is too large for the window (owrk in IE) how do I get a proper display.
Thanks .. Larry

J
Jane 6/16/2006

Larry,
It's totally managed by the browser,

so there are no way to make Firefox work as IE.

J
jenolan author 6/16/2006

Ummmm .. sorry
But it is an imperfect world that we live in .. FF/IE differences are a matter of course, we need to cater for it on our site it is only a basis of changing the window size or doing the window open in a W3 compliant manner.
Larry

Admin 6/19/2006

Larry,
I'm sorry. We'll tune the datepicker to show up properly in both browsers.

Please try to apply the following modifications to PHPRunner files.

Open calendar.html file in C:\Program Files\PHPRunner\source folder with a text editor and modify the following two snippets there. See my changes in bold.

document.write('&nbsp;<select style="width:95" name=month ...


document.write('&nbsp;<select style="width:55" name="year" ...


Then open calendar.js in C:\Program Files\PHPRunner\source\include.

Find this line:

'Calendar', 'width=215,height='+(this.time_comp ? 230 : 205)+



and replace it with:

'Calendar', 'width=230,height='+(this.time_comp ? 230 : 205)+


Then rebuild your pages.

J
jenolan author 6/19/2006

I'm sorry. We'll tune the datepicker to show up properly in both browsers.


Thanks for that!!!
What also impacts it (mentioned to Sergy in email) is that the FF plugins FasterFox & ServerSpy upset the calendar .. go figure .. aint computers just ever so much fun!
Larry