Cannot open lightbox on uppermost 1/2 hour cell

I have the init settings like this:

scheduler.config.xml_date="%Y-%m-%d %H:%i"; scheduler.config.time_step = 30; scheduler.config.first_hour = 6; scheduler.config.hour_size_px=42; scheduler.config.last_hour = 23; scheduler.config.hour_date="%h:%i %A"; scheduler.config.limit_time_select = true; scheduler.config.details_on_create = true; scheduler.locale.labels.timeline_tab = "Timeline"; scheduler.locale.labels.unit_tab = "Craftsmen"; scheduler.locale.labels.section_custom = "Craftsman: (defaults to \"Unassigned\")"; scheduler.locale.labels.section_atype="Appointment Type:"; scheduler.locale.labels.section_template = 'Work Order #:';

So the first hour is 0600. In week or day view if I click in the 0600 cell nothing happens. But, I can click in the 0630 cell and fire the lightbox, which in this instance would default to 0630-0700. How can I activate the 0600 cell?

Hello.

It seems like its possible to create events at 06:00 with your config.
See example:
docs.dhtmlx.com/scheduler/snippet/18681726

Do you have some another configs? It would be nice if you’ll show your sample.

Sten,
I have set up a safe copy, since the original is attached to realtime data. I’ve hard coded some php session vars just enough for it to function.
http://asbs.ddns.net/worksite/testCal/calendar5.php
Let me know if you can’t connect, or anything.

Thanks

I found it. It was in css. Somewhere I had gotten or manufactured the following css:

.dhx_cal_header, .dhx_scale_bar { height:40px !important; }
The header and scale_bar were overflowing onto the scale_holder. When I simply commented out that line the problem went away.

Thanks, anyway.
Ed