Questions Tagged lite
Navigation
Answered: You can switch dates using .commandCallBack() method: MVC View
<div class="note">
<a href="javascript:dp.commandCallBack('previous');">Previous</a> |
<a href="javascript:dp.commandCallBac...
Daypilot Scheduler Lite
Answered: You can try 1. to remove [assembly: AllowPartiallyTrustedCallers] from DayPilot/Source/Properties/Assembly.cs (and recompile DayPilot) or 2. to add [assembly: AllowPartiallyTrustedCallers] to your dl...
Calendar: CssClass for the event. how to in lite version?
Hello, I see in the last Lite 4.0.261 release for the Calendar version I can use CSS themes but I can't find how to customize the background color for single events on the calendar. I should use in B...
Month header for Scheduler
Hi, According to this overview, it should be possible to have week, month or year headers in the lite edition of the Schedular: http://www.daypilot.org/compare-versions.html But how? Thank you for ta...
Events not aligning with day columns in Daypilot LIte
Answered: This issue is fixed now in release 4.1: http://www.daypilot.org/daypilot-lite-for-asp-net-webforms-4-1.html
Schedule Resources based on table
Answered: Yes, you can access Resources collection in the code behind. See a hint here (it's the doc for the Pro version but the mechanism is the same): http://doc.daypilot.org/scheduler/resource-loading/
DayPilot Month - RTL direction (Sunday start from right to left)
Answered: Unfortunately RTL direction is only implemented for the Calendar control at the moment: http://doc.daypilot.org/calendar/rtl/
Clear all the events from the calendar
Answered: In the Lite version, there is no client-side API to do this. The only way is to look for event <div> elements using jQuery and delete them.
Create event
Hi, How do I create an event in the lite version. There doesn't seem to be any tutorials for novices. Is there any walk through's out there? I've opened the demo in visual studio 2008 and when I clic...
Line 27 error
All my other pages with DayPilot features are running fine, but the main calendar page continues to hang on this one line of code. I added a Modal Popup for the calendar, to add appointments, and thi...
How to delete event in DayPilot Lite Calendar
Answered: To refresh the calendar (Lite), you need to place it inside an UpdatePanel and call UpdatePanel.Update().
Tutorials
Answered: The tutorials which include DayPilot Lite are licensed under Apache Software License 2.0 and can be used for free. The tutorials which include DayPilot Pro are licensed for evaluation purposes only. ...
Fixed-width events
Is it possible to display a day-view with fixed width events - i.e. that don't resize to the whole day width?
EventClickHandling="PostBack" how to get value in c#
Answered: protected void DayPilotCalendar1_EventClick(object sender, DayPilot.Web.Ui.Events.EventClickEventArgs e) { txtValue.Text = e.Value; }
How to get parent resource id
Hi, I'm using daypilot scheduier. Dynamically i'm creating the resource tree . My code is like below Resource res = new Resource(StoreName, StoreID); DayPilotScheduler1.Resources.Add(res); res.Childr...
events not displaying in daypilot Clander lite
the same code used in daypilot pro it is working but when the code used in daypilot calender lite the calender is displaying but the events not displaying
How to add further subdivisions between time
Answered: If you are referring to the Scheduler, what you are looking to do is inside the <daypilot:daypilotcalendar....CellDuration="5"..../>
Resources backcolor
Answered: If they have UNIQUE subject names, you can change the background color of them in your BeforeEventRender using a case statement based on what is in the subject. Example I have for you, I work with ph...
Day pilot calendar disappear
Why my dayilot calendar disappear when I insert a event or when I change the date but the event did go into the database
DayPilot Lite Schedular is Very Slow in IE 10
Answered: First, you should also check if it is the Scheduler and not your SELECT command that is causing the delay. DayPilot Scheduler Lite is not optimized to display a large number of events. You can try th...
Problems Migrating DayPilot Lite for ASP.NET MVC 1.3 SP1 (build 1.3.395)
Answered: This error suggests that the daypilot-all.min.js file was not included properly. This file defines the DayPilot namespace - it includes all the .js files merged (common.js, calendar.js, month.js, mod...
Define URL for Event
Answered: By default there is no URL associated with the event. You should handle the EventClick event and define the required action. For redirecting it to a specified url you can use something like this:
...
How to Refresh DayPilot Lite Scheduler after entering event
Answered: The only way to do it in the Lite version is to place the Scheduler inside an UpdatePanel and refresh the panel. It is demonstrated in this tutorial (not described in the tutorial text but it is used...
Changing date format in DayPilot lite schedular in header
Answered: The Lite version of the Scheduler doesn't support changing the date format in the header. It will always show the day number for CellDuration >= 1440. If you want to display something else you will h...
Binding Calendar Events to Backend Stored Procedure Dataset
Answered: These properties should actually hold the names of the fields/columns in the list: DataIdField = "RowNum" DataTextField = "Employee" DataStartField = "Annual_Leave_Day" DataEndField = "Annual_Leave_D...
Why does Calendar re-render after TimeRangeSelected event fires?
Answered: If you use TimeRangeSelectedHandling="JavaScript" it will only execute the the JavaScript defined in TimeRangeSelectedJavaScript (onTimeRangeSelected on the client side). The server-side TimeRangeSel...
How do i use update panel for DayView
Hi I'm trying to use daypilot lite, to dispaly events on the calender and if the selected date changes..it should bind the data for that date..But it is not working.. Any help appreciated <div style=...
Error on DayPilotMonth EventClick
Hi, I´m getting an error when using the EventClick, when i run the page, gives the next error: 'ASP.aaaa.aspx' does not contain a definition for DayPilotMonth1_EventClick and no extension method 'Day...
How to apply a theme to a day pilot day resource view
Answered: In the Lite version, CSS themes are only supported in version 4 and higher: http://www.daypilot.org/daypilot-lite-for-asp-net-webforms-4-0.html In both Pro and Lite, you need to follow these steps: 1...
crash on opening ajax toolbox popup extender (IE 10 only)
only in IE 10 (no such issue in previous version of IE and Chrome): IE crash on TimeRangeSelected opening modal popup extender from ajax Control Toolkit P.S.: in all other cases (when opening not fro...