Create an all day event

Is there a way to create an all day event without assigning a time to it?

You can add
scheduler.config.full_day = true;
( in case of plugin can be added through scheduler_include.html )
As result “full day” checkbox will appear in the lightbox form.

Is there a way to keep events listed in order that they were added to the calendar. I have users signing up to be on call. Sometimes more than one person signs up on the same day. I need the order to stay the same. Sometimes the second or third person to sign up does not go to the end of the list for that day.

Hi,
unfortunately the is no way to solve it

Hi Stanislav,
could you please explain, where I have to add it ? I’ve found the scheduler_include.html and inserted the snippet. But nothing happens.

Hi,
you have to add into scheduler_include.html like here:

<script>
scheduler.config.full_day = true;
</script>

thank you, radyno!

I get the checkbox now.
Though with the name “undefined” … where can I define the label?

thomas.

Hi,
you may add it at the same file

<script>
scheduler.config.full_day = true;
scheduler.locale.labels.full_day = "Full day"
</script>

thank you!

I put that code in the scheduler_include.html file, but nothing happens, and nothing new appear when I create a new event… what I’m doing wrong?

Hi,
could you provide link to your scheduler page (and ability to create/edit events)?
Usually “all day” checkbox appears after that.