Questions Tagged
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...
When I resize an event in the scheduler while the mouse is over the event I trigger the edit box
Answered: Fixed in Version 7 :)
Recurrence repeats
Is there a way to modify the repeat action to mirror the repeat period context? i.e. if for example I select weeekly Mon / Tue and set repeat 2 times I get 3 events in the calendar, mon, tue and mon....
View resources on horizontal scheduler axis?
Hi, Just wondering whether it's possible to view resources on the hoizontal axis with times down the vertical axis? I did a quick search for questions relating to this and found one which was four ye...
Year View in Scheduler Lite
Answered: Column groups are only supported in the Pro version (CellGroupBy property for one group level and TimeHeaders for multiple group levels, see also http://www.daypilot.org/daypilot-pro-for-asp-net-webf...
"The request must start in "JSON" string " error occur in asp.net mvc rezor c# schedule deleopment
Answered: Please see section #3 of the tutorial (3. MVC 3 Controller). There are two Actions that need to be created: Index (opens the view) Backend (backend for internal ajax callbacks) If you open the action...
Month / DataResourceField Property
Answered: You're right. This property is there because EventMoveEventArgs is shared by all controls. This is not the best design decision but the API change would break the existing implementations. The 7.0 re...
Change text content of an event client side?
Answered: There is a set of methods that allow you to set the client-side properties:
e.client.innerHTML("New HTML");
e.client.cssClass("newClass");
e.client.toolTip("New ToolTip");
e.client.backColor("#d...
Problem in export scheduler event data
Answered: You should increase the Width property value during image export or set it to "100%" in order to show the full range (from StartDate to EndDate).
Regarding Event on First Day of Scheduler
Answered: You should check the page source code (if the form is submitted using a PostBack) or the CallBack response body to see whether the event is in the events list. You can use Chrome/IE Developer Tools o...
The .net Calendar Not Updating DayPilotCalendar?
I am attempting to get a basic calendar up and running Everything seems to be working with the exception of the .NET Calender NOT being able to change the date of the DayPilotCalendar. I followed the...
Scheduler Hide Event Times
Answered: The latest sandbox build supports ShowEventStartEnd property with a default value set to false: http://www.daypilot.org/sandbox/Scheduler/ That means the event times are no longer added by default. Y...
Header of Scheduler
Answered: Please see here, this feature is new in DayPilot Pro for ASP.NET WebForms 6.9: http://www.daypilot.org/daypilot-pro-for-asp-net-webforms-6-9.html
Click on Weekoff days
Hi, I have implemented Day Pilot Control in my application. Day Pilot control is maintaining saturday/sunday automatically and shows gray color for that. Is there any property by which i can disable ...
source does not compile
Answered: It's now fixed in the latest release: http://www.daypilot.org/daypilot-lite-for-asp-net-webforms-3-1-sp2.html
Refresh single scheduler event from javascript
Answered: Of course I found the answer 10 minutes after posting: use commandCallBack() to initiate the refresh
Prevent date changes in scheduler when dragging
Answered: It's in the plan and it should be available soon - hopefully in the 7.0 release: http://www.daypilot.org/daypilot-pro-for-asp-net-webforms-7-0.html It will be possible to limit the moving to either h...
End of day not show all hours
Answered: It seems this has the same cause as this issue: http://forums.daypilot.org/Topic.aspx/1659/events-times-not-matching-placement-on-dpc That is, when StartDate is set including the time part the Calend...
Copy/Paste
Answered: Brandon, It's already possible. Please see the following guide: http://kb.daypilot.org/46975/how-to-implement-copy--paste-in-the-calendar/
Navigator for DayPilot Calendar with ViewType='workweek'
Is there an easy way ('easy' meaning preferably some sort of DayPilot attribute/method) to make a navigator bound to a dpc whose viewtype is set to workweek? The problem I'm getting is that I'm using...
Events' times not matching placement on dpc
Answered: This turned out to be a bug in StartDate property handling. Setting this property to a DateTime value that included time during a callback confused the calculations. It's now fixed in the code base (...
DPM ContextMenuClientName not working properly
Answered: It's now fixed in build 1.6.5405. Thanks Brandon!
Select all row with Time Range Selection
Answered: Unfortunately, this is not possible at this moment.
modal Form hangs after submit
Answered: Phil, It seems to be related to the Content-Length header and response encoding. Could you please try to post the response HTTP headers? It should look like this:
Cache-Control:private
Content-Len...
Hebrew Calendar
Answered: All the controls allow to override the headers with custom text/html. The internal calculations need to be based on the Gregorian calendar but you should be able to convert each date displayed to Heb...
TutorialDayPilotMonthSql.zip
Answered: As per our discussion, it seems that the issue has been resolved. I'm not able to reproduce this issue either.
Custom event rendering for VB
Answered: Martyn, Please see here: http://www.daypilot.org/scheduler-tutorial-hotel.html Section "Event colors indicating the reservation phase".
A control with ID 'UpdateTimer' could not be found for the trigger in UpdatePanel 'TimedPanel'.
Answered: This is not enough information to give you an answer. It depends on the location of the UpdateTimer. A few hints: 1. Please see: http://stackoverflow.com/questions/6667398/a-control-with-id-could-not...
How to wrap detail text on Calendar Control?
Answered: In the Calendar control (http://www.daypilot.org/calendar.html) the text should be wrapped automatically. You can force a new line by inserting "<br/>" (use e.InnerHTML in BeforeEventRender event han...
include a textbox value in the postback when the cursor is still in the textbox
Answered: I fixed this by using TimeRangeSelectedHandling="PostBack" instead of CallBack Thanks for a great scheduler control!