Questions Tagged lite
Add / Edit Events save to database
I downloaded DayPilot lite 2.0 and I am trying to integrate it our Visual Studio ASP.net 2.0 with c# project and SQL Server database to verify before we migate to Visual Studio 2012 in about 5 months...
Multiple columns in one day
Answered: You probably mean the "Column Header Hierarchy" feature: http://doc.daypilot.org/calendar/column-header-hierarchy/ This feature is not planned for the Lite version. I recommend purchasing the Pro ver...
DatasourceID return as string vaule
Basically i used they following code to get the string in the cell field EventInfo ei = DayPilotCalendar1.SelectedEvents[0]; string evnt = ei.Text; But i would like to get the DatasourceID of the fie...
My big font size text cannot display all text because timing is too short.
Answered: You can insert custom HTML into the event cell so it will add a scrollbar (see overflow: auto). You can also increase the cell height using CellHeight property. See also: http://doc.daypilot.org/cale...
How to change colour for different days for the column events?
Answered: In the current release (4.1), you will have to use e.InnerHTML in BeforeEventRender event handler to insert a div with a custom background color specified. The next release will fix apply the color s...
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 ...
Daypilot lite 4.1 is free
Answered: Yes, you can download it here: http://www.daypilot.org/download.html
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...
How to change PerformDataBinding for changing the text displayed in text for Calendar?
Answered: You can use BeforeEventRender event to modify the event HTML as needed.
protected void DayPilotCalendar1_BeforeEventRender(object sender, DayPilot.Web.Ui.Events.Calendar.BeforeEventRenderEventArgs ...
Demo project does not launch with VS 2013
Answered: This turned out to be an issue of IIS Express that reports different values in request.Path and request.ApplicationPath. It's now fixed in build 1.3.401: http://mvc.daypilot.org/daypilot-lite-for-asp...
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