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

Questions Tagged lite

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

How to display half hours

I have a day sheduler where I want the shifts from 8h30 till 17h. I want it to be in cells of 0:30min. But this doesn't work. When I change the cell duration to 30 I only get 00 and 30, not 08:30... ...

Update partialView

Hi, I am using the right click to change my project status: "@Html.DayPilotMenu("dpsMenu", dpsm);". It's work fine, but now I want to change (or reload) a partialView I use in the same page and I can...

Moving events

Hi, Is it possible to move events (drag and drop) in the open source version of the Calendar? Thanks

Value cannot be null. Parameter name: collection

Answered: Dave, what's the version of DayPilot you are using? If you are not using DayPilot Lite for MVC 1.2 already I recommend switching to to because it's compiled with MVC4. http://mvc.daypilot.org/daypilo...

How to change width for first column in Timeline-View (DayPilotScheduler)

Answered: Try the RowHeaderWidth property.

Accuracy of Event Color Bar to the Event's Start/End Time

Answered: Well the best answer is to get the Pro version -- the feature I described is built-in and maintained. However, I have made some adjustments to the "calendar.src.js" file below around line 2005. Be su...

AM/PM Incorrect on Event Header with "Clock12Hours" Setting

Answered: This bug is fixed now in the latest codebase. The fix will be included in the next release. Thanks for reporting the issue!

How to Zoom out to year(s)

I have 10+ years of data and I am trying to Zoom way out in years. I am following the sample located here, http://forums.daypilot.org/Topic.aspx/454/how_to_achieve_the_zooming_feature_in_scheduler_co...

ASP.Net MVC3 -- How to update "StartDate" field from jQuery DatePicker control?

Answered: You should replace dpc.startDate = newDateTime; dpc.callBack2('Init'); with this: dpc.commandCallBack("goto", { "start": start }); In the server-side OnCommand handler, detect e.Command ==...

Date and Time

Answered: You will need to join these two fields in the select command: http://stackoverflow.com/questions/700619/how-to-combine-date-from-one-field-with-time-from-another-field-ms-sql-server But I would recom...

Popup Window

Answered: In the Lite version, the start, end, and column variables are not available in TimeRangeSelectedJavaScript. You need to use {0} and {1} strings: {0} will get replaced by the time range start and {1} ...

Displaying from other table

Answered: You can customize the event HTML using BeforeEventRender event handler. The original DB row is accessible using e.DataItem property. Example: protected void DayPilotCalendar1_BeforeEventRender(...

Calendar Day Colour

Answered: You need to replace the logic in isThereEvent() with an actual check against your data set. You will need to test for overlaps of the range define by date and date.AddDays(1) with the events. You can...

protected DataTable getData()

Answered: See a LINQ example here: http://kb.daypilot.org/56894/how-to-use-daypilot-scheduler-with-linq-to-sql/ var db = new DataClassesDataContext(); var events = from ev in db.Events where...

loadResources error

Answered: You are trying to connect to Microsoft SQL Server using SQLite ADO.NET adapter. You need to replace "SQLite*" with "Sql*".

Style day of events.

Hello, I have chosen to use the calendar control along with Daypilot as per the examples given in the package. It all works perfectly but I was wondering if it was possible and if so how can it be ac...

GetData from SqlDataSource

Answered: Yes, you can use DayPilotCalendar2.DataSourceID = "SqlDataSource1";

Mak the Event a clickable Link

Answered: Allan, The "e" object is not available in the Lite edition. You should do it like this: EventClickJavaScript="window.location.href = 'CourseDetails.aspx?CourseID={0}';" "{0}" will be replaced with th...

Asp.net MVC rezor view calender example is not run on my computer

Hi Team, I am trying to learn about Asp.net MVC rezor view calendar example on the link http://mvc.daypilot.org/mvc-3-razor-calendar-and-sql-server-tutorial-c-and-vb-net/ But this example is not runn...
Previous Questions 271-300 of 438 Next