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

Active Questions

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

How to use DayPilot Scheduler in SharePoint 2010 ?

Answered: Version 7.3.2844 doesn't call Assembly.GetName() (which requires IO permissions) anymore. You can download it in the sandbox: http://www.daypilot.org/sandbox/

Schedular not showing after deployment

Answered: Hi Dan, That works great! i'm happy to be able to see the scheduler again :D With kind regards, Wendel van Rheenen

Newest DayPilot Pro 7.3.2840.0 does not bind multiple calendars on one page

Answered: This bug is fixed now, see also: http://forums.daypilot.org/Topic.aspx/1909/newest-daypilot-pro-7-3-2840-0-resource-calendar-does-not-s

Newest DayPilot Pro 7.3.2840.0 Resource calendar does not show events

Answered: We've discovered the same problem after upgrading to 7.3. The problem seems to occur in daypilot-calendar.js. If you have access to the source code, you can fix this manually in daypilot-calendar.src...

HELP ! I use Sheduler . I want count all sunday in beween tow days

Answered: DateTime start = Convert.ToDateTime("2013-04-01"); DateTime end = Convert.ToDateTime("2013-05-02"); int count = 0; for(DateTime d = start.Date; d < end.Date; d = d.AddDays(1)) { if (d.DayOfWe...

How to display day, week, month and year view on selection of user choice?

Answered: The best way is to add one control for each of the views (day/week/month) and hide all except of one. 1. You can do this by simply wrapping them in a div with style="display:none" and change this pro...

Where are the MVC tutorials?

Answered: The first MVC tutorial is now available: Tutorial: Monthly Calendar and SQL Server (C# and VB.NET)
mvc

How to insert an image inside a task cell in a Gantt Chart?

Answered: You can customize the header HTML using BeforeResHeaderRender event. This event is called once for each resource and you can modify e.InnerHTML as needed there. The default e.InnerHTML value is an es...

Recurring Event

Answered: Recurrence support was introduced in 6.0 release for the Calendar, in 6.3 for the Month and Scheduler controls and in 6.6 for the Navigator. See also the following tutorials: http://www.daypilot.org/...

what is the daypilot.xml file?

Answered: This file includes the API documentation generated from the source code. It is not necessary to include it but if you do Visual Studio will display the documentation inline. You can browse the API do...

Customizable Hours?

Answered: The following tutorial shows how to create a weekly timetable using DayPilot Pro: http://code.daypilot.org/65101/timetable-tutorial-asp-net-c-vb-net

Can this be used as a timetable?

Answered: Yes, it can be used to show a timetable. You only need to transform your day value to a certain date. The easiest way would be to pick a year which starts on the same day of the week. That's the case...

International languages?

Answered: The controls use the current culture set on the server. You can use the following web.config settings to have the server use the browser language automatically: <configuration> <system.web> <globaliz...

Size Row nello Scheduler

Answered: Unfortunately not. You can only control it indirectly: http://www.daypilot.org/scheduler-row-height.html

DayPilot

Answered: Touch devices (including iPad) are fully supported since 7.3 release: http://www.daypilot.org/daypilot-pro-for-asp-net-webforms-7-3.html

BeforeCellRender InnerHtml

Answered: BeforeCellRender/e.InnerHTML should be fully supported in all controls since 6.8 release: http://www.daypilot.org/daypilot-pro-for-asp-net-webforms-6-8-sp1.html Initially it was only implemented in t...

Set an EventHeight per event

Answered: This is not possible in the Lite version. In the Pro version, you should be able to do this by creating a special CSS class and applying it to the event in BeforeEventRender (in CssOnly mode). Just n...

How to customize the column header of calendar control?

Answered: The automatic height adjustment is available since 7.1 release (HeaderHeightAutoFit property): See the release notes: http://www.daypilot.org/daypilot-pro-for-asp-net-webforms-7-1.html Demo: http://w...

Scheduler: Show Business hours per Ressource

Answered: You can change the cell background using OnBeforeCellRender method: protected override void OnBeforeCellRender(BeforeCellRenderArgs e) { if (e.Start.Hour > 5 && e.ResourceId == "5") { e.B...
Previous Questions 3561-3580 of 5291 Next