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

Active Questions

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

DayPilotNavigator

Answered: The horizontal mode is supported since 7.3 release: ASP.NET WebForms http://www.daypilot.org/daypilot-pro-for-asp-net-webforms-7-3.html ASP.NET MVC http://mvc.daypilot.org/daypilot-pro-for-asp-net-mv...

MVC Razor Tutorials

Answered: For ASP.NET MVC tutorial, please see http://code.daypilot.org, especially http://code.daypilot.org/tag/mvc
mvc

Running the Demo without ASP.NET AJAX Extensions installed

Answered: Fixed.

How to add custom data to event?

Answered: Event customization was not supported in the Lite version until 3.1 release. http://www.daypilot.org/daypilot-lite-for-asp-net-webforms-3-1.html In 3.1 and later versions you can use BeforeEventRende...

Crosshairs prevent EventSelectJavaScript and TimeRangeSelectedJavaScript from firing in IOS6

Answered: Since 7.3 release DayPilot should be compatible with iOS 6. See also the release notes for supported actions (EventClick is supported): http://www.daypilot.org/daypilot-pro-for-asp-net-webforms-7-3.h...

Bug in Calendar withTimeHeaderCellDuration?

Answered: The TimeHeaderCellDuration only accepts values that divide 60 without a remainder. There is a check missing, 40 should not be allowed. If you want to show custom time slots I recommend using the mapp...

How do I change the colours of events in the month calendar depending on event type? (CSS Only)

Answered: You can change this the scheduler "BeforeEventRender" event Here I advise you to create your own layout, using labels, divs, ... this can be done using the "e.tag" values you get from your event. Onc...

DayPilot Month show bubble when click

Answered: You can use EventClickJavaScript="bubble.showEvent(e, true)", where "bubble" is the value of DayPilotBubble.ClientObjectName.
Previous Questions 3481-3500 of 5203 Next