Answered: Please take a look at this tutorial: http://www.daypilot.org/tutorial-calendar-sqlserver.html You have to call pnlPopup.Show() from the code behind to display the modal popup. However, my advice is t...
Answered: How do you implement the filter? The recommended way to is store the filter in .clientState and update the calendar using .commandCallBack(). $(document).ready(function() { $("#dropdown").change(func...
Answered: DayPilot Month uses the same event height for all events. You can set it using the CSS theme but it is still the global height. http://doc.daypilot.org/month/event-height/ Using a different height fo...
Answered: Please note that IE 7 is not supported since the 7.7 release. Anyway, this issue is fixed now in build 7.7.3061. You can test and download it in the sandbox: http://www.daypilot.org/sandbox/Scheduler...
Answered: Thanks for reporting the issue. It's fixed now in build 7.7.3058 (see the sandbox at http://www.daypilot.org/sandbox/ ). The fix will be included in the next release. The bug affected the CssOnly="fa...
Hi, How do I set the row height in Scheduler resource view? I've read some info about CellHeight but I cant see that as a property of the DayPilot Scheduler. Thanks
Answered: At this moment there is no way to apply such limitations on the client side during the drag and drop operation but you can check the rules on the server side in the OnEventResize and/or OnEventMove o...
Answered: Please use MinCellHeight property instead: http://doc.daypilot.org/month/cell-height/ The DayPilot Month cell height is extended automatically to fit all the concurrent events.
Answered: You can use something like this: An example using DayPilot.request(): function loadResources() { DayPilot.request("backend_resources.php", function(result) { var data = eval("(" + result.responseText...
Answered: Since DayPilot Pro for ASP.NET WebForms 7.5 you can use the fixed column mode . http://doc.daypilot.org/calendar/fixed-column-width/ It will display the calendar columns with fixed width (ColumnWidth...
Answered: Yes, this happens if you use DayPilot binaries compiled with ASP.NET MVC 4 in a project that uses ASP.NET MVC 5. Releases 7.7 SP1 and later include binaries compiled with ASP.NET MVC 5. http://mvc.da...
Answered: DayPilot is compiled with .NET 2.0 and you can use it on IIS 6 with .NET Framework 2.0. Everything should work. Just note that most of the tutorials at http://code.daypilot.org are built using Visual...
Answered: If you mean DayPilot.Modal ( http://code.daypilot.org/81367/daypilot-modal ) and a generic ASP.NET button you can try this: <asp:Button id="Button1" runat="server" OnClientClick="new DayPilot.Modal()...
Answered: Hi Steve: 1. You can try fixed column width: http://doc.daypilot.org/calendar/fixed-column-width/ This would be a quick solution. You can specify the column width in pixels. A horizontal scrollbar wi...
Answered: You can send custom data using Update() method: http://doc.daypilot.org/calendar/callback-update/ The data parameter will be passed to AfterRenderJavaScript. It is stored in CallBackData internally.
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 ...