search envelope-o feed check
Home Unanswered Active Tags New Question
user comment-o

EventStart/End display on DayPilotMonth with ext overlapping?

Asked by LarryDavidJr
11 years ago.

Hi,

Am using the month view to display events. Have a fairly simple implementation as below. With these default settings the time slots are 'over' the displayed text (as in attached pic), which seems odd as a default implementation. Is there something I have to change in the styling to do this? Or should it display one below the other by default?

<DayPilot:DayPilotMonth runat="server" ID="EmployeeRota" ViewType="Month"
EventStartTime="true" EventEndTime="true" ShowWeekend="true" CellHeaderHeight="20" EventHeight="50" EventTextLayer="Bottom" HeaderHeight="20"/>

This is on both Chrome and IE8 with version 6.9.2522.0

Answer posted by Dan Letecky [DayPilot]
11 years ago.

Please try to add this:

EventTextLayer="Top"

Comment posted by LarryDavidJr
11 years ago.

Well, doing that means that the text is over the times, which means that the times can't be read. So it doesn't help much, just reverses the problem!

Comment posted by Dan Letecky [DayPilot]
11 years ago.

If you have such a small event box, you can't have all the information there and still keep it perfectly readable.

There are a few more options:

  • you can hide the times using EventStartTime="false" and EventEndTime="false" and add it to the text using BeforeEventRender
  • you can show only the start time and indent the text (EventTextAlign="Left", EventStartTime="true", EventEndTime="false", EventTextLeftIndent="50")
  • you can increase the event height using EventHeight property and experiment with combinations of the properties mentioned above

See also: http://www.daypilot.org/month-event-formatting.html

Comment posted by LarryDavidJr
11 years ago.

It doesn't matter how tall I make the event box, the text DIV still overlays the absolutely positioned time DIV's. Overriding the absolute positioning and setting float left/right/clear on the relevant elements and leaving the width and height as auto gives the desired effect, so I'll probably do that. Either that or override the event rendering to just add the time in to the text.

Thanks anyway.

Comment posted by Dan Letecky [DayPilot]
11 years ago.

I'm not sure why it was implemented like this instead of using the floats. Probably there was some browser incompatibility involved. Maybe it's time to revise that. Please let me check.

Comment posted by LarryDavidJr
11 years ago.

That would certainly make sense. It probably works better with the default event size too, just didn't quite work for my situation. No matter, got a workaround now. Thanks for your help.

Comment posted by Dan Letecky [DayPilot]
11 years ago.

There is now a third EventTextLayer mode available: EventTextLayer="Floats". It arranges the elements using float:left (the start time) and float:right (the end time). It's available in the latest sandbox build (6.9.2524):

http://www.daypilot.org/sandbox/Month/StartEndTime.aspx

It will need some polishing but it seems to work fine.

Comment posted by LarryDavidJr
11 years ago.

That seems to work pretty good. I added a 'clear: both: to the value element when testing to push the element below the times, otherwise it looks a bit odd when a multi word value can partially fit in the top line (see attached Tues 26th 'Lucie chick' ). Whether that's actually desirable as a default or not I don't know.

[Can't attach files to replies, so here's a tinypic link http://i48.tinypic.com/mrr4u0.png]

This question is more than 1 months old and has been closed. Please create a new question if you have anything to add.