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

Questions Tagged

Context Menu Styling - Not working

Answered: The menu CssClassPrefix syntax has been updated recently to match the other other controls. If you replace CssClassPrefix="menu_default_" with CssClassPrefix="menu_default" (note the missing last und...

How To add more than one datafield to DayPilot Scheduler

Answered: You can add extra fields using DataTagFields. It accepts multiple field names, separted by a comma. But you don't need to explicitly add these fields - you can access the original event object using ...

DayPilot Bubble Feature

Answered: You need to follow these steps: 1. Create the bubble: <DayPilot:DayPilotBubble ID="DayPilotBubble1" runat="server" CssOnly="true" CssClassPrefix="bubble_default" /> 2. Assign it to the mo...

How To generate Flowchart ?

Hi guys...i want to create A flow chart from data stored in my Project Management module, but i colud found any suggestion how? i want to generate Flowchart in C# programatially (not using any Tool) ...

help me Create New Resource using dialog daypilot Pro

i want using Dialog create new Resource and save to database SQL after refresh and show it

Scheduler: How to Keep TimeHeaders Visible When Scrolling Down

Answered: The Scheduler has a built-in scrollbar that will allow you to scroll the time grid while keeping the time headers in place. You need to adjust the control height using HeightSpec and Height propertie...

Daypilot Scheduler

Answered: You should set .StartDate (the first visible day) and .Days (number of days) to match your event set. SetScrollX() will set the scroll position but it has to be within this range.
mvc

Reccurence problem in month view (render)

Answered: When selecting the recurring events you need to include all recurrence definitions from the past as well. See also: http://code.daypilot.org/34377/shift-scheduling-tutorial-asp-net-sql-server-c-vb-ne...

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

Crosshair when Drag&Drop

Hi there, is it possible thow show the crosshair in scheduler when I drag an event? At the time when I click the event to drag&drop, the crosshair is not available. Thanks for help. Dennis

DayPilotMonth EventClick Function

hi, I want to ask is the example that you have for DayPilotMonth is when clicking the event on the calendar, a popup will appear. Instead of a popup, I want it to appear a MultiView. But the DayPilot...

Microsoft JScript runtime error: Unable to get value of the property 'rows': object is null or undefined

Hi, Daypilotcalendar is producing the above javascript error after it is rendered. It is mainly occuring when i am trying to use the scroll bar in the page. How can i solve this.. thanks in advance

DayPilotMonth Calendar

Answered: DayPilotMonth inherits from System.Web.UI.WebControls.DataBoundControl which handles the DataSource processing. DayPilotMonth just reads the supplied items. It doesn't detect the actual DataSource ob...

Event rendering different on Chrome

Answered: If you don't use EventSortExpression it will be sorted using an equivalent of "start asc, end desc". If both event start and end are identical then the result is not guaranteed. It turns out that IE ...

Assign the column name to daypilotcalendar.eventBackColor in pro

Answered: You need to use BeforeEventRender event handler: protected void DayPilotCalendar1_BeforeEventRender(object sender, BeforeEventRenderEventArgs e) { e.BackgroundColor = (string) e.DataItem["colo...

Clearing all the event of Daypilot

Answered: Server side: DayPilotScheduler1.DataSource = null; DayPilotScheduler1.DataBind(); DayPilotScheduler1.Update(); Client side: dps.events.list = []; dps.update();

Dynamic Event Loading with Dynamic Resource Tree Loading - Use both?

Answered: There was a bug which is fixed now in the latest sandbox build (7.4.2900): http://www.daypilot.org/sandbox/ Please let me know if the problem persists.

Right click event

Answered: Sorry about this one. Accidentally had eventRightClickHandling = "ContextMenu" below everything

Custom hover event

Answered: It's not implemented at the moment. It might appear in the 7.4 release but I can't promise it.

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

Time on y-axis and Users on x-axis in daypilotscheduler

Answered: DayPilot Scheduler has resources/users on y axis and time on x axis by definition. It's not possible to switch the axes. You can use the Calendar switched to Resources mode (i.e. custom columns that ...

Add Columnb/Attributes

Answered: In BeforeEventRender event handler, you can reach the original data item using e.DataItem property: e.DataItem["field1"] // field1 e.DataItem.Source // the original object e.DataItem is access...

Bubble for Resources at Top and Bottom not working as it should in IE/Chrome.

Details attached in docx file.

Custom context menu when right-clicking on empty space in Scheduler

I am using Daypilot for ASP.NET MVC, specifically the Scheduler. I set the ContextMenuSelection property of the Scheduler to show a context menu when a user right-clicks on an empty space in the sche...

Hide all Time Headers in Scheduler

Answered: You can use the following workaround: function afterRender(data, isCallBack) { dps1.showBaseTimeHeader = false; dps1.timeHeaders = []; dps1.update(); } And set AfterRenderJavaScri...

Display Back to Back Events in Scheduler

Answered: 1. The combination of UseEventBoxes=Never and setting the end time to the start time of the next event should work. If you take Image 3 and set UseEventBoxes=Never, does it work as expected? 2. You s...

How do I customize daypilot bubble animation.

Answered: You can turn it off using .Animated = false. It is not possible to provide custom animation at this moment.

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

Scheduler - HeaderRow Start at 23 o`clock

Answered: Yes, it's possible. The StartDate must be set to the first day. You need to use ShowNonBusiness="false" option. Then you will be able to hide individual time columns using BeforeTimeHeaderRender even...

Can I show a context menu when the user right-clicks on an open space in the Scheduler?

Answered: Yes, this is possible - you need to assign the context menu to ContextMenuSelection: <%= Html.DayPilotScheduler("dps", new DayPilotSchedulerConfig { BackendUrl = ResolveUrl("~/Scheduler/Backend"...
Previous Questions 3271-3300 of 5090 Next