Answered: Not all properties are synchronized during the CallBack update - forcing the full update using DayPilotCalendar1.Update(CallBackUpdateType.Full) doesn't help. 1. You can place the Calendar control in...
Answered: It looks like your styles use position: absolute. This causes the bubble HTML content to be taken out of the page flow - it doesn't extend the bubble div height. Try using position: relative instead.
Answered: There are three views/controls that will let you display one cell per day: 1. Navigator (a small monthly calendar that usually serves as a date picker) http://doc.daypilot.org/navigator/ 2. Monthly e...
Answered: In the current release (4.1), you will have to use e.InnerHTML in BeforeEventRender event handler to insert a div with a custom background color specified. The next release will fix apply the color s...
Answered: Please check that the modal.js script is included properly. You can download it here: http://code.daypilot.org/81367/daypilot-modal Also, make sure that it is initialized using the new keyword: var m...
Hi! I want to add f.a. "resourcetype" to a resource. And then, i want to read this attribute when the user drop an event, f.a. in the method "onEventMove". Is this possible? THANKS!!! Daniel
Hello, when I set below setting DayPilotScheduler1.ViewType = DayPilot.Web.Ui.Enums.Scheduler.ViewTypeEnum.Days and Drag even over daypilot scheduler giving "TypeError: this.rows[e.part.dayIndex] is ...
Answered: The START_DATE and END_DATE fields are correct but why do you store time separately in START_TIME and END_TIME? The type of START_DATE is "datetime" and it will allow you to store both date and time ...
Answered: Changes of the key properties (id, start, end, resource, text) doesn't have an immediate effect because it would cause problems if you modified events that are already visible in the calendar/schedul...
Answered: Using DayPilot Pro 7.7.787 and later (see the sandbox at http://javascript.daypilot.org/sandbox/ ) you can do this: dp.onEventClicked = function(args) { new DayPilot.Bubble().showHtml("Event details:...
Answered: Please try version 7.7.759 from the sandbox: http://javascript.daypilot.org/sandbox/ "ddd" pattern string is not implemented in prior versions.
Answered: Yes, there is no built-in onEventDelete event. You can call dp.events.remove(e) and then notify the server: dp.events.remove(e); $.post("delete", { e: e.id() }, function() { dp.message("Deleted"); } ...
Answered: The navigator fires two events: 1. TimeRangeSelected when you click a date 2. VisibleRangeChanged when you click "next" or "previous" links at the top You need to set TimeRangeSelectedHandling to "Po...
Answered: You can customize the header HTML using onBeforeTimeHeaderRender event handler: dp.onBeforeTimeHeaderRender = function(args) { if (args.header.level === 1) { args.header.html = args.header.start.toSt...
Answered: If you want to customize the text that is displayed in the event box you should use the BeforeEventRender event. protected void DayPilotCalendar1_BeforeEventRender(object sender, BeforeEventRenderEve...
hi i am using an sql table for my event data with additional data tags and populating an event Bubble on hover with Protected Sub EventBubble1_RenderEventBubble(ByVal sender As Object, ByVal e As Day...
Answered: You can change the navigator date using .select(date) method: http://api.daypilot.org/daypilot-navigator-select/ You can call it from the EventClickJavaScript handler: @Html.DayPilotMonth("dpm", new ...
when ever i m clicking on toolbar command event is not firing and when page is open all three calendar that is daycalendar,weekcalendar and monthcalendar are visible????? y is it so ny help???
Hey Dan! Can you add a Text to a seperator to descripe it? You could add a bubble for a short time when you do a mouseover over the seperator. Or show the text on the upper of the seperator. thanks d...
Answered: Please make sure that your resources have unique IDs and that the correct resource ID is specified for the event (see DataResourceField property). The event will be displayed in all rows where the re...
Answered: This issue is fixed now in 7.7. SP2 release: http://www.daypilot.org/daypilot-pro-for-asp-net-webforms-7-7-sp2.html You can download the new version here: http://www.daypilot.org/try.html
Answered: Alex, You need to register it using DayPilot.Locale.register() method: DayPilot.Locale.register(localeMy); The .register() method must be invoked on DayPilot.Locale object directly (not on an instanc...
Hi, We are considering using DayPilot Pro for Javascript in our web application. The only concern we have is that it is too big (478 kB minified) and there are modules that we don't need such as Gant...