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

All Questions

Calendar: Integrated Message Bar

Answered: At this moment you have to switch to manual message displaying using .message() - http://api.daypilot.org/daypilot-calendar-message/, AfterRenderJavaScript, and Update(object): .aspx <DayPilot:DayP...

IE 8 - Events not resizing

Answered: John This issue is now fixed in 6.9 SP2 release: http://www.daypilot.org/daypilot-pro-for-asp-net-webforms-6-9-sp2.html Thanks for reporting the issue.

Source code does not compile?

Answered: It looks like the VS 2010 project is outdated. It's now fixed in the code and the fix will be included in the next release. You can try to open it through the VS 2008 solution (DayPilotLite2008.sln) ...

Modal CSS

Answered: Yes, you can load the stylesheets directly in the page loaded using the DayPilot.Modal.showUrl() - e.g. Edit.aspx. Pages open in an iframe don't use the stylesheets of the parent page.

Simple Database Question

Answered: Hi brandon, Yes, you can load the data directly to Events property. It accepts any IEnumerable. You only need to map the object properties using DataIdField, DataStartField, etc. See an example (usin...

ShownonBusiness = false gives erratic behaviour on Sat/Sun?

Answered: OK, just found this link from a few years back: http://kb.daypilot.org/79065/how-to-show-business-hours-on-weekends-in-scheduler/ But do we really have to override like that? It seems like there shou...

How do I empty a DayPilot calendar please?

Answered: You can use an empty list as a DataSource: DayPilotCalendar1.DataSource = new ArrayList(); DayPilotCalendar1.DataBind(); This will display an empty calendar without any events.

New Notify Model (6.8 SP1) issues with events

Answered: Mike, All the issues should be fixed now in build 2508 (see the sandbox at http://www.daypilot.org/sandbox/ and the list of changes here - http://www.daypilot.org/daypilot-pro-for-asp-net-webforms-7-...

How do I collapse all day events into single row?

Answered: You will have all these features if you upgrade to the Pro version: http://www.daypilot.org/buy.html

How do I disable all pop-ups?

Answered: Set EventClickHandling="Disabled" to deactivate event click handling and TimeRangeSelectedHandling="Disabled" to deactivate background cell click handling. These properties are new (modified) in DayP...

How to disable event time on DayPilotScheduler?

Answered: Until the special switch is added to the Scheduler it can be customized using BeforeEventRender event handler: protected void DayPilotScheduler1_BeforeEventRender(object sender, DayPilot.Web.Ui.Eve...

How to set calendar to show current date?

Answered: You have to do it in the code behind, not in the .aspx page: protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { DayPilotCalendar1.Star...

VB .Net and no database.

Answered: You need to store the list of events somewhere (at least in memory, or in a XML file). This list needs to be persisted between requests. You add the event to the calendar by adding it to the list and...

add children to resources in daypilot shedular

Answered: Please see here: http://kb.daypilot.org/10298/how-to-load-scheduler-resource-tree-from-a-database-sql-server/

How to put the current date as first view on the DayPilotScheduler?

Answered: You can do it using SetScrollX() method: protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { DayPilotScheduler1.SetScrollX(DateTime.Today...

How to use Hour cell group on DayPilotScheduler

Answered: What's the CellDuration value? It must not be greater than 60 for CellGroupBy=Hour 60 must be divisible by CellDuration (without remainder) The following values will work: 10 20 30 60 The following v...

Scripts use IndexOf on arrays, not available in IE8?

Answered: It should be fixed now in build 6.9.2499. Please see the sandbox: http://www.daypilot.org/sandbox/ And also here: http://www.daypilot.org/daypilot-pro-for-asp-net-webforms-6-9.html

How to show DayPilot:DayPilotScheduler Bubble using JavaScript

Answered: Please see here: http://kb.daypilot.org/29719/how-to-show-a-calendar-event-bubble-using-javascript/

how do i open bubble on Click activation i m using earlier version of daypilot (5.8)

Answered: See here: http://kb.daypilot.org/29719/how-to-show-a-calendar-event-bubble-using-javascript/

Microsoft JScript runtime error: 'offsetLeft' is null or not an object in daypilot

Answered: Hi, i am using DayPilot version 6.6.2359.1 and also try latest released version.

Problem with default click handler on a resource in Scheduler v6.8.2477

Answered: The 6.9 release will be published later this week (June 15 at the latest). If you need the full build now please contact support@daypilot.org.

DayPilotBubble1_RenderContent in VB

Answered: The direct equivalent of "e is MyType" would be "TypeOf e Is MyType": If TypeOf e Is RenderEventBubbleEventArgs Then Dim re As RenderEventBubbleEventArgs = TryCast(e, RenderEventBubbleEventArgs) ... ...

Side Scrolling Problem Persists

Answered: I figured it out. I put the Calendar inside a div with TEXT-ALIGN set to left. That ran the whole calendar to the left of the screen, then I put it into a table that was centered and the problem went...

Resource Header

Answered: Unfortunately this is not possible at the moment. The Scheduler (http://www.daypilot.org/scheduler.html) can only split the row header into several columns but it's not possible to add another cell a...

modal window data

Answered: This can happen if the event details/edit page gets cached. Please see here: http://kb.daypilot.org/15266/how-to-force-the-modal-dialog-to-load-its-content-from-the/

DayPilot Lite for ASP.NET use in Hebrew

Answered: Yes, there should be no problem.

How to limit Number of months in shedular

Hi, I am implementing daypilot shedular control in my asp.net application. But it display data from January to December. How do i retrict the shedular to show data up to specific moth e.g. How do i i...

Daypilot paging and sorting

Hi, I am bit confused to found is it possible paging and sorting in daypilot shedular if yes please give me some ideas for how do i achieve it. Thank You

Customize Header in

Answered: You should use the following settings: CellDuration="10080" (one week) CellGroupBy="Month" You can customize the header HTML using BeforeTimeHeaderRender event handler. See also: http://kb.daypi...

Does recurring events support "every third monday of the month" ?

I'm looking at the DayPilot calendar control for a client project. The recurring events feature works very well, but I can't find any documentation on scheduling a recurring event on the 'x' day of e...
Previous Questions 3631-3660 of 5174 Next