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

Questions Tagged

Resize event

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

Time and Attendance for ASP MVC

Hello, I am after a working time and attendance component with managers approval and invoicing - status (approval/rejected) and various states (like submitted, new, locked etc). So the same timesheet...

Monthly Time range selection is erratic

Answered: Thanks for the reply Dan. No issue with clearing it manually. It was just acting slightly different from the Lite version and wanted to be sure it wasn't something stupid that i did.

Grid Lines

Answered: If you mean the grid cells starting and ending at 12:00 (noon) instead of 00:00 (midnight) then this is implemented using a custom timeline feature: https://doc.daypilot.org/scheduler/timeline/ It's ...

User too much speed

Answered: The Scheduler supports BlockOnCallBack property that allows blocking the UI during CallBacks (until the CallBack is resolved). It temporarily places an overlay div over the Scheduler which prevents a...

Monthly Event Calendar - Steps after AJAX Calendar Event Moving not clear

Answered: To get it working you need these elements: 1. A MVC view with the calendar (Views/Home/Index.cshtml) 2. A controller action for this view (Controllers/HomeController.cs: Index() method) 3. A controll...

Cells drawing problem

Answered: Strange issue. The Scheduler doesn't get rendered properly when it's in a hidden part of a page during initialization (such as an inactive tab). This happens because the browser doesn't calculate dim...

Disable HeaderColumn resize

Hi, is there a method or a property to disable resize of HeaderColumns? I have created 3 custom columns in my scheduler and I really need to lock their size. Thanks Davide

Demo version question

Answered: The demo doesn't have this kind of limitation. It might be your bug, but it might also be a DayPilot bug - so let me know in that case.

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

How can I update the DayPilot in modal after adding events?

Answered: The Scheduler needs to read its own dimensions after rendering in order to render the current viewport. This isn't possible if the Scheduler is in a hidden area of a page (e.g. in a <div> with displa...

Expected release date for ASP.NET Core Scheduler?

Answered: The ASP.NET Core version should be available during March.

dayPilot licence

Answered: There are two editions of DayPilot: 1. DayPilot Lite (Open-Source) - available under Apache License 2.0 DayPilot Lite for ASP.NET: http://www.daypilot.org/daypilot-lite/ DayPilot Lite for MVC: http:/...

If you end modal with OK, it will result in an error.

If you end modal with OK, it will result in an error. Line: 1 Error: 'JSON' is not defined. It is normal to end modal with CANCEL

use only modal

Can I use only the modal of DayPilot? Is there an example of ASP.NET VB

TimeDuration

can we select time duration of two hours ex like:12 to 2,2 to4 etc.

Disable daypilot.task.complete (percentage) on DayPilot Gantt

There are times I do not want to show the progress (complete percentage) of each task in DayPilot Gantt. Is there anyway to disable/hide the complete percentage progress text? Instead I would show ta...

change the color

Answered: You can set the grid cell color using BeforeCellRender event handler. Alternate row colors: https://doc.daypilot.org/scheduler/alternate-row-colors/ Note that BeforeCellRender/e.X and e.Y are availab...

How to display more than one(current) mont ?

I have a sheduler like on screenshot. Unfortunately it shows only reservations(load from database) from current month. I'm able to display more days (eg dp.days = 365;) but there's no cells(only line...

The END date will be added one day

Answered: This behavior is described here: https://doc.daypilot.org/scheduler/event-end-date-time/ You can switch the logic using EventEndSpec="Date" (the default value is EventEndSpec="DateTime"). Let me know...

Servers

Answered: With Angular CLI (which uses Webpack) the Angular 2 project needs to be run using "ng serve" (available as "npm run start"/"npm start") during development. That's why the tutorial uses two independen...

Change DurationBarColor when click

How can I change the DurationBarColor when I click on event? (Gantt) Is there a way that I can change a specific event style box from the program? When I tried the DurationBarColor it didn't work for...

Scheduler OnTimeRangeSelected shows wrong start/end

I set business hours at 7-23 and do not want to show non business hours. My code looks like this: http://pastebin.com/V5RhtV0d The thing is that on time range selected it shows wrong hours, e.g. star...

How to hide Daypilot.contextMenu

Answered: You can use hideOnMouseOut property: var dp = new DayPilot.Menu({ items: [ {...}, {...}], hideOnMouseOut: true });

How to change the Day Width

Answered: You can customize the cell width using cellWidth property. The Gantt chart component is based on the Scheduler and in uses the same API: dp.cellWidth = 60; dp.update();

Not allowed to add event on same place after Deleting the event

Answered: Got this to work with following code change:- let shiftToDelete = dp.events.find(this.selectedEventId); dp.events.remove(shiftToDelete); dp.clearSelection(); But is it necessary to call clear selecti...

Angular2 row filter + auto width

Answered: A tutorial on row filtering in Angular 2 is in the works and it will be published in a day or two. The row header width autofit should work fine, let me check that.

Scheduler not working

Answered: Ok, nevermind I just used the function I wrote before: protected override void OnBeforeCellRender(BeforeCellRenderArgs e) { if ((e.Start.DayOfWeek == DayOfWeek.Saturday || e.Start.DayOfWeek == DayOfW...

Open edit window after creating

Answered: It's possible to open the edit dialog on the client side as soon as the TimeRangeSelected callback is finished. You can pass custom data back to the client side using DayPilotCalendar.Update() and re...

dp.scrollTo is giving performance issue on IE browser

Answered: Hi Devendra, Have you seen this thread? http://forums.daypilot.org/Topic.aspx/3626/angular2-scheduler-performance-issue-after-upgrade The latest Angular 2 version (2.3+) degrades Scheduler performanc...
Previous Questions 2221-2250 of 5272 Next