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

Questions Tagged how-to

Disable eventoverlap on on client side in calendar?

Answered: Unfortunately it's not implemented in the Calendar at the moment. It will be added in one of the future releases.

Hide/Show Navigator in AngularJS(Datepicker style)?

Answered: You can access the DayPilot.Navigator object using $scope.navigator (because id="navigator"). The config only holds the configuration data (it has no methods). Try this instead: // show $scope.nav...

how to edit create events with recources ?

how to edit create events with recources ? can you give us examples with recouces

Start displaying Monthly calendar by the date of the current day

Answered: nevermind, Looks like it's a pro feature...

daypilot.sqlite file

Answered: You can use one of the SQLite manager applications, e.g. http://sqlitestudio.pl/

Gantt control, moving tasks

Say I have 5 tasks, and each task is linked to the one before it, if i move the first task is it possible to have all the other tasks move the same number of days? so say task one is from 01/01/2016 ...

How to pass date from partial view to controller in MVC4?

Hi I want to pass the data from partial view to controller My Partial view Code @Html.Label("Area" , new { @class = "control-label" }) @Html.TextBoxFor(model => model.Area, new { @class = "form-contr...

attributes like name and project codes

Hello, is there a mechanism to capture other attritbutes from user, Errors in does not work with the version on your site in VS 2015 .NET 4.6 thanks

Switching X and Y axis

Answered: Yes, this is possible using the Calendar control: http://doc.daypilot.org/calendar/resources-view/ However, the vertical time axis in the Calendar is limited to 24 hours.

Scheduler -> Dynamic Cell Width with a minimum

Answered: There was a bug in the latest release that prevented CellWidthMin from working. It should be fixed now in the latest sandbox build (8.1.3509): http://www.daypilot.org/sandbox/

Should it be just a matter of replacing the DayPilot.dll to upgrade from the Lite version?

Answered: No additional changes should be required. You can give it a try by replacing the Lite version DayPilot.dll with the trial version from http://www.daypilot.org/try/

Load Resources and Events On Vertical Scroll

Answered: At this moment, the Scheduler doesn't support loading additional resources during scrolling. All resources need to be loaded in advance using .resources array. However: 1. The row headers are rendere...

How to disable daypilot scheduler?

Answered: Yes. There are two options: 1. You can turn off individual actions using the *Handling properties. Example: dp.eventClickHandling = "Disabled"; dp.eventMoveHandling = "Disabled"; 2. You can also...

RecurrenceExpander.Expand Issue

Answered: The current implementation doesn't support creating an exception for the first occurrence (the one stored in the master record). If you create an exception with the start date that corresponds to the...

How do I use a date time after TimeRangeSelectedJavaScript?

Answered: The start of the selection is available in "start" variable in TimeRangeSelectedJavaScript. It is a DayPilot.Date object. TimeRangeSelectedJavaScript = "document.location='Bokabord2?startingtime=' ...

execute a javascript function after commandCallBack success

Answered: I recommend relying on the Navigator to request the events using the standard mechanism: 1. Let the "Next" button change the navigator only: <a href="#" id="next">Next</a> <script> $("#next")...

Export/Print Function for GANTT

Answered: It's in the plan and it will be available one of the future releases.

Loading Completed Event?

Answered: There is a built-in element ("loading label") that will be displayed if a callback takes more than about 100ms. You can set the label HTML using LoadingLabelText property. It is displayed in the uppe...

How do you know when a single occurrence has been 'rescheduled'?

We are using the RecurrenceExpander to go through events to show whether openings on our calendar are 'booked' or not. Using the RecurrenceExpander seems to work well EXCEPT when one of the recurring...

how-to-read-anr-write-tags (Continued)...

Answered: Thanks for pointing this out. The ASP.NET version stores the tags in a slightly different way. Using e.tag("name") is the universal way to read the tag values. The JavaScript version requires the eve...

Send Email Reminders

Answered: You need to load the events from the database and expand them using RecurrenceExpander class. You can do this outside of a page and outside of the ASP.NET context - e.g. in a standalone application r...

onBeforeCellRender for a ressource on a day

Answered: Let's say you have a list of days to be highlighted: var days = ["2016-01-01", "2016-05-01"]; You can use the following code to highlight these days in the Scheduler: dp.onBeforeCellRender = fu...

Rows Filtration in Scheduler

Answered: It's quite possible that the version you are using doesn't support row filtering. As you can see in the documentation (https://doc.daypilot.org/scheduler/row-filtering/) the row filtering is supporte...

Update event details in database using Ajax

Answered: I assume you don't want to use any of the built-in mechanisms (PostBack, CallBack, Notify). You can make your own AJAX call (e.g. using jQuery) from EventResizeJavaScript handler. Note that the JS co...

How do I get the in-built UI functionality for editing recurrence events restored after not using inbuilt functionality?

Answered: Dave, You need to store the rule definition with the master record even if you don't let DayPilot to expand it automatically. You will need it just for this case - to know how the rule was defined so...

I would also like to allow the users to edit the recurring events and subsequently the recurring rule using the inbuilt support AND the manual events ..

Answered: For events that you have expanded manually you need to store this information in custom fields (DataTagFields) so you can access them later. You will not be able to identify them using e.recurrent() ...

Call Modal Box in AfterRenderJavascript

How to call modal box in AfterRenderJavascript and and how to pass event e in it?

Resource start time format in scheduler

Answered: When you specify the data source for the Gantt columns it will take the source data and display them using the default format. In case of DateTime fields, it is DateTime.ToString() method. This metho...

Multi-Line Events

Answered: By default, the Scheduler prevents the event text from wrapping. You can change it using eventTextWrappingEnabled property: dp.eventTextWrappingEnabled = true; You can also set custom event heigh...

How to add a recurrence symbol for series of events whereby each event is a seperate event?

Answered: You can add the image using BeforeEventRender - just modify the html using e.Html to include an <img> element. http://doc.daypilot.org/calendar/event-customization/ Another option is to use event act...
Previous Questions 1621-1650 of 3052 Next