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

Active Questions

How to manually resize the scheduler (and calendar) vertically on initial page load

Answered: There are two options: Use HeightSpec="Parent100Pct" and let the scheduler adjust its height according to the parent element automatically (see http://doc.daypilot.org/scheduler/100-pct-height/). It ...

Is DayPilot right for this job?

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...

How to change the column text header name?

Answered: There is no built-in mechanism for customizing the column header in the Lite version. You will have to modify the source code.

Having issue for daypilot calendar to display database values based on the date and time from database

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 ...

var modal = new DayPilot.Modal(); JavaScript runtime error: Object doesn't support this action

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...

External Drag and Drop

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 ...

Is it possible to get information of selected timerange while selecting?

Answered: This feature is in the works. I will be available in 1-2 weeks.

Problem with starting on the first day of the week

Answered: I added the day of the week to the method and it worked: dp.scrollTo(new DayPilot.Date().firstDayOfWeek(1));

How to change the code to display varchar and date type data instead of two datetime type for the daypilot calendar?

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, BeforeEventRenderE...

Changing start date of event

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...

Event is displayed twice (Dynamic Loading)

Answered: This bug is fixed now in build 7.7.781. Please see the sandbox: http://javascript.daypilot.org/sandbox/

Show html bubble on event click in Scheduler

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("...

Strange behavior of DayPilot.Locale datePattern

Answered: Please try version 7.7.759 from the sandbox: http://javascript.daypilot.org/sandbox/ "ddd" pattern string is not implemented in prior versions.

asyncpostbacktrigger with daypilot navigator

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...

Deleting event

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("D...

Change Navigator Week When Event Clicked in Month

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", ne...

How can I get the Scheduler to show that my event is longer than displayed in the current view?

Answered: This is not yet supported but I'm adding it to the wishlist.

Daypilot lite 4.1 is free

Answered: Yes, you can download it here: http://www.daypilot.org/download.html

Display custom string in time headers

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....

Use jQuery datePicker to select the date

Answered: As soon as you know the selected date, you should send it to the server using commandCallBack() method in order to change the date and load the new event set. See ASP.NET MVC/Example 1 here: http://d...
Previous Questions 3241-3260 of 5291 Next