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

Questions Tagged javascript

BOM at beginning of body

Answered: It looks like without the BOM the browser doesn't recognize the <doctype> section at the top of the HTML file and renders the document in quirks mode. There might be a problem with some non-ascii cha...

BubbleText Hover

Answered: It's not possible to display the bubble when the mouse cursor is still in move but you can configure the delay it waits (after the cursor stops moving) using showAfter property: https://api.daypilot....

Constrain Event moves in Scheduler to within Parent Resource?

Answered: Oh, of course... after hours of searching docs, I find something mere seconds after asking. I'm assuming it will be handled in "Event Moving Customization" correct? https://doc.daypilot.org/scheduler...

Slow Load Times in IE11 DayPilot Pro for Javascript

Answered: Andrew, Something like this can happen if you have an extremely large timeline. Try checking your combination of "scale" and "days" values. I'd try to keep the timeline length (the number of cells in...

Kanban for AngularJS not working

Answered: Which version of DayPilot do you use? The latest version (2018.3.3417) seems to work fine so it might be a bug of one of the previous releases: https://javascript.daypilot.org/demo/kanban/angularjs.h...

change cellWidth on the fly

Answered: Unfortunately, the ASP.NET version doesn't support client-side changes. It's bound to the server-side backend and it's necessary to invoke a callback (e.g. using commandCallBack() method) to request ...

Can an Event option be used to adjust Business hours for a Scheduler resource?

Answered: Hi Tony, I'm happy to hear that DayPilot helps. Unfortunately the business hours are specified on the resource (row) level. At this moment, there is no way to set different business hours for differe...

DayPilot Responsive

Nice, easy to use package. I saw earlier question about making DayPilot responsive. I poked around in the code and found two lines where percentages are added as comments. I used the percentages inst...

Css class removed after expanding resource group

Answered: The CSS class added using addClass() is now persisted to DayPilot.Scheduler.resources[].cssClass and it will survive update() calls. It's implemented in the latest sandbox build (2018.4.3445): https:...

Context menu on event creates an extra div

Answered: The purpose of the additional active area div is to keep the icon visible even when you move the mouse out of the event box. It was incorrectly activated for visibility: "Visible" as well. It's now f...

Showing tasks on group level

Answered: Hi Nikola, I see. It's possible to use parents as well. Some examples use "treePreventParentUsage: true" setting to disable the parent rows but the default it to enable drag and drop for all rows. Se...

Is it Possible to show time on horizontal axis and date om vertical axis in calendar control

Answered: Unfortunately, this is not possible with the Calendar control - but this kind of view is served well by the Scheduler control.

Modify end datetime in beforeEventRender

Answered: Unfortunately, it's not possible to change event start/end in onBeforeEventRender. You'd have to modify the data source before assigning it to dp.events.list. It might be more convenient to do it on ...

Is bolding of navigation calendar dates available in Lite version?

Answered: Unfortunately, loading free/busy Navigator data is not supported in the Lite version at the moment.

How to identify the new scheduler that the event was moved to?

Answered: You can identify it in onEventMove event handler - "this" object will point to the target Scheduler. This will work even if you reuse the same event handler function for all Scheduler instances. dp...

Display Context Menu On Touch Device Tap

Hi there, I am trying to display the scheduler event context menu when the user taps on the event from a touch device. I want this behavior to happen only on touch devices (small screens) not on desk...

Angular 6 Gantt - Cannot read property 'internal' of undefined

Answered: You can fix this bug by installing the latest sandbox build: npm install https://npm.daypilot.org/daypilot-pro-angular/trial/2018.3.3413.tar.gz --save

start date and end date

Answered: You can use "startDate" to change the visible date range: https://doc.daypilot.org/calendar/manual-date-switching/ The end date is calculated automatically, depending on the viewType value (https://d...

How to disable or hide the expand/collapse button on resources

Answered: Sorry for the delay! You can hide it using custom CSS. For the default theme (scheduler_default) you can use something like this: .scheduler_default_tree_image_no_children, .scheduler_default_tree...

Format date in timesheet mode (Angular 5)

Answered: By default, the timesheet uses the short date format specified using the current locale for the day headers. You can customize the text using onBeforeRowHeader render event handler: config: any = {...

How to routing on onEventClicked: function (args) { } ANGULAR

Answered: Try using the TypeScript syntax: constructor(private router: Router) { } config: any = { onEventClicked: args => { this.router.navigate(.....); } } When using the JavaScript syntax "...

How to use bubblehtml on angular5

Answered: Please make sure that eventHoverHandling property is set to "Bubble": config: any = { eventHoverHandling: "Bubble" }; This is the default value but the current version of the UI Builder (http...

Disable cells previous to the current datetime

Answered: Unfortunately, DayPilot Lite doesn't support disabled cells. However, you can check the dates in onEventMove, onEventResize, and onTimeRangeSelect events handlers and call args.preventDefault() to ca...

How use Scheduler component on html component

Answered: For Angular 5 Scheduler project please see the Angular 5 Scheduler Quick Start tutorial: https://code.daypilot.org/87636/angular-5-scheduler It includes the basic setup required in Angular 5. You can...

daypilot calendar bubble bug (angular, general)

Answered: This issue should be fixed in the latest sandbox build (3394): https://javascript.daypilot.org/sandbox/calendar/index.html Please let me know if the problem persists. A new release with the bug fix w...

Can we prevent link creation?

can we prevent link creation of particular row?

Disabled Cells

Answered: What version of DayPilot Pro are you using? Disabled cells prevent all drag and drop operations, as you can see here: https://javascript.daypilot.org/demo/scheduler/cellsdisabled.html

Prevent event card scaling when at view boundry

Answered: You can disable this behavior using floatingEvents property: dp.floatingEvents = false; See also: https://doc.daypilot.org/scheduler/floating-events/

Ability to adapt to the user timezone

Answered: Unfortunately, automatic time zone handling is not supported at the moment. This is a desirable feature but it's not trivial and it's in the research phase now. I can't promise any delivery date at t...

Issues with type definitions

Answered: Sometimes, it can happen that the TypeScript definitions are missing a declaration of a specific member, especially if it has been added recently. Your examples: 1. commandCallBack() method is specif...
Previous Questions 1201-1230 of 1975 Next