This topic is locked

Date picker calendar resize

12/29/2008 11:05:14 AM
PHPRunner General questions
vin7102 author

Hi,
I'm using firefox and zoom in at about 130% to magnify tabs and text and such but when the date picker calendar comes up I have to drag the corner to resize in order to see the entire calendar or to show the "Today" link on the bottom.

This is odd because everything else for the entire application re-sizes perfectly when zoomed in.

This occurs for every page where I have to select a date from a date picker calendar
Any Ideas on how to re-size this calendar to adapt to the current zoom level of the browser automatically?

J
Jane 12/30/2008

Hi,
check following code in the generated include/caledar.js file:

var obj_calwindow = window.open(

'calendar.html?datetime=' + this.dt_current.valueOf()+ '&id=' + this.id,

'Calendar', 'width=230,height=230,status=no,resizable=no,top=200,left=200,dependent=yes,a

lwaysRaised=yes'

);

vin7102 author 12/30/2008

Hi Jane,
Found it, Changed height to 300 and works perfect
Thank You