Answered: You can use AfterRender client-side handler (AfterRenderJavaScript property in MVC DayPilotSchedulerConfig). This script will get called after every update (including the initial rendering). You can ...
I followed this tut to make navigation in calendar using scheduler code.daypilot.org/33944/event-calendar-day-week-month-for-asp-net-mvc I have done all exactly the same when I click on calendar on O...
Answered: looks like it was just confusion on my part as to how the cssOnly attribute worked. if I manually set the background with beforecellrender as seen at http://forums.daypilot.org/Topic.aspx/1724/howto-...
Answered: You should export the scheduler as PNG and embed the image in the document/email as needed: http://www.daypilot.org/scheduler-image-export-bmp-png-gif-jpg.html
I'm using the mvc scheduler, and displaying only single day. For the time header display, I'm doing the following to get the 12 hours format (AM/PM), and also setting TimeFormat = TimeFormat.Clock12H...
Hi, I'm using daypilot scheduier. Dynamically i'm creating the resource tree . My code is like below Resource res = new Resource(StoreName, StoreID); DayPilotScheduler1.Resources.Add(res); res.Childr...
Answered: You can add the textbox by setting custom InnerHTML to something like "<input type='text' id='myid' />'. You can access it through Resources collection or using BeforeResHeaderRender event (e.Columns...
Answered: Kevin, You can try this: EventMoveJavaScript="eventMove(e.start(), newEnd)" In this event handler the following variables are available: * e - DayPilot.Event object * newStart - DayPilot.Date object ...
Answered: This bug should be fixed now in build 7.4.2951 (see the sandbox at http://www.daypilot.org/sandbox/ ). Please let me know if there is any problem.
Answered: At this moment it uses the culture of the current thread. I.e. you can set it globally in web.config: <configuration> <system.web> <globalization culture="en-US"/> </system.web> </configuration> or i...
Answered: You can initialize it using the JavaScript API directly instead of calling the @Html.DayPilotScheduler() helper. Example: function initScheduler() { var dps = new DayPilot.Scheduler('dpScheduler'); /...
Answered: This is a bug of the optimized rendering mode (all identical cells in a column are rendered as a single div). This is already fixed in the ASP.NET WebForms version and it will be fixed in the MVC ver...
Answered: Each scheduler will be represented by a special object on the server side and also on the client side. Using two schedulers on the same page should be no problem.
the same code used in daypilot pro it is working but when the code used in daypilot calender lite the calender is displaying but the events not displaying
Answered: You should be able to use a custom CSS class for this special event (set e.CssClass in BeforeEventRender event handler). Since build 7.4.2948 you can use CellMarginBottom property to specify minimal ...
Hi I can't find how to focus the calendar or a scheduler on a selected date outside of the control itself. The Calendar control uses a parameter as @Start. Is it possible to have that date set to ano...
Answered: You can use the client-side API to modify the .resources array: http://api.daypilot.org/daypilot-scheduler-resources/ Then call .update() to refresh the scheduler: http://api.daypilot.org/daypilot-sc...
Hi, I have placed a scheduler on my page and am trying to walk through the tutorial of the hotel room project. I am working in VS2010 (webforms) and have created a new App_Code folder and placed the ...
Hello, I want to select a TimeRange with the strg oder shift key. I don't use the solution with the popup to enter a start and end date. I want that the user select the range with the strg oder shift...
Answered: If they have UNIQUE subject names, you can change the background color of them in your BeforeEventRender using a case statement based on what is in the subject. Example I have for you, I work with ph...
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...
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 ...