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

Active Questions

Cannot read property 'height' of undefined

Answered: After trying a few things I've came to the conclusion that dp.update() can not be executed before dp.show() or vice-versa.

Finding empty time slots in the event calendar

I am trying to build a timesheet app and I want to find all the empty slots (where there is no event assigned to the time slot) on a given day and not let them submit if there are more than accepted ...

cells don't appear with background color

Answered: Are you using the latest DayPilot Pro version? This normally shouldn't happen and I'm not able to reproduce this problem. Anyway, as a workaround you can also call: dp.show(); It has the same effect ...

ShowNonBusiness="false" page collapse

Hi, I have a date picker that is fed to the Scheduler control. The scheduler only shows 1 day at a time and for the hours 5am until 9pm using ShowNonBusiness="false" BusinessBeginsHour="7" BusinessEn...

Angular2 : problem with licensed version

Answered: There is a bug in the latest release. It's already fixed in the latest sandbox build and a new release is on the way - it will be available later today. Meanwhile, you can use the previous release (8...

one events on tow resources

Answered: There are several possible approaches: 1. You can select multiple ranges at once: https://doc.daypilot.org/scheduler/time-range-multi-selecting/ 2. You can select additional rows and create a record ...

scrollToResource

I need to return the user to the last row they clicked on and see references to scrollToResource but it doesn't seem to exist in the Pro MVC build. Is there a way to do this in MVC?

Cell customize

Answered: I'm not sure if this is exactly what you are looking for but you can get a list of events the overlap a given cell in onBeforeCellRender using args.cell.events(). See also: https://api.daypilot.org/d...

Resize event

Answered: I've updated the version and its solved. thanks.

DayPilotBubble not showing on Touch/Mobile devices (iOS/Android)

Answered: Hi Piet, The problem is that the previous behavior was not intended - it was never supposed open a cell bubble on tap. Cell tapping selects a single cell and fires TimeRangeSelected event. You should...

New Lines in DataTextField

Answered: Oh nevermind, I just replaced Environment.NewLine with <br /> and in wrote protected override void OnBeforeEventRender(BeforeEventRenderArgs e) { e.Html = e.Text; } works nice now, there are new line...

Reloading daypilot control based on dates from textbox

How to reload daypilot scheduler based on date entered in a text box? Currently thought it taking value, once form is loaded, it show data loaded first time. Kindly assist

Scheduler - Event.partStart()

Answered: dp.eventMoveSkipNonBusiness = true;

DayPilotScheduler variable no longer available

Answered: Yes, DayPilotScheduler namespace is deprecated as is no longer available. Instead of DayPilotScheduler.dragStart() you can use DayPilot.Scheduler.startDragging(options): Old syntax: DayPilotSchedul...

Half Day Blocks

Answered: Found a solution... function onEventMoving(args) { args.start = args.start.getDatePart().addHours(12); args.end = args.end.getDatePart().addHours(12); }

Event for ContextMenuSelection

Hey everyone, I tried to call a method in my contoller via a the MenuItemAction. In the normal ContextMenu the "OnEventMenuClick" event gets fired. So I want to know which event is for the ContextMen...

Change actual date to "Day 1" for shift cycle

Is it possible to change the actual date in the header, e.g. 02/16/2017 to "Day 1", "Day 2", etc.? This is useful when doing/showing shift cycles where a date is not relevant (dates are assigned late...

Conditional Overlaps of Appointments?

Answered: You can use the real-time event handlers to implement it: EventMovingJavaScript EventResizingJavaScript TimeRangeSelectingJavaScript The latest sandbox build (8.3.3582) supports DayPilot.Row.events.f...

Bubble not showing when hovering over event

Answered: Pete, What version of DayPilot do you use? There is a bug in version 8.3 SP3 (8.3.3568) which prevents the Bubble activation. It's fixed now in the latest release: https://www.daypilot.org/daypilot-p...

Default start time

Answered: In the Calendar control, you can use ScrollPositionHour property to set the initial scrollbar position.
Previous Questions 2241-2260 of 5307 Next