Questions Tagged feature
resourceHoverHandling
Answered: Since build 2852 it's possible to use action: "Bubble" for row headers as well:
dp.resourceBubble = null;
dp.onBeforeRowHeaderRender = function(args) {
args.row.data.bubbleHtml = ...
JS Schedular - Multimove across the resources(y axis)
Answered: You can move all events if you set multiMoveVerticalMode property to "All":
dp.multiMoveVerticalMode = "All";
The documentation is now updated.
AreaCollection in DayPilot calendar
Answered: Active areas were not supported in the Calendar grid cells until now. However, this feature is now available in the latest sandbox build (8.3.5867): https://mvc.daypilot.org/sandbox/
Disable daypilot.task.complete (percentage) on DayPilot Gantt
There are times I do not want to show the progress (complete percentage) of each task in DayPilot Gantt. Is there anyway to disable/hide the complete percentage progress text? Instead I would show ta...
image in Scheduler
Hi Can it is possible to have an profile image of Resources in Daypilot Scheduler. If it is possible can you provide me the code in JS. Thanks Anil Singh
DurationBar for DayPilotMonth object
Answered: DayPilot Month doesn't have built-in duration bar support. However, you can add a custom bar easily using "active areas" (in the Pro version):
protected void DayPilotMonth1_BeforeEventRender(object...
RowHeaderColumn change after EventResize
Answered: By default, events are not stored anywhere so you need to reload them (use DataSource and DataBind just like in Page_Load):
Public Sub dpCalendar_EventResize(sender As Object, e As DayPilot.Web.Ui....
Gantt.Export(ImageFormat.Png) and Gantt.ExportBitmap()
When will Gantt.Export(ImageFormat.Png) and Gantt.ExportBitmap() be available? How can I export or print the entire gantt chart?
Does HourHalfBorderColor still works in new Calendar version ?
Answered: This property is obsolete now when CssOnly="false" mode is not supported anymore. However, you can achieve this effect using CSS. The border is defined using a cell class. The default style ("calenda...
Time in event title
Answered: The current version doesn't add the time automatically but you can enable it using ShowEventStartEnd property:
ShowEventStartEnd="true"
Scheduler event diseapear after resize/move
Answered: Older versions of DayPilot stored event data in ViewState by default. Newer versions use StoreEventsInViewState property to control the behavior. By default it is set to "false". You can enable the o...
Push updated data to other connected clients
Answered: In ASP.NET MVC, the best way is to use SignalR to notify the client about the changes. You could possibly also send the actual changes using SignalR but it seems to be easier to just send a "refresh ...
Navigator selection days
Answered: It's in the wishlist but there is no specific time plan. There is an option to sponsor this feature if you'd like to set a fixed implementation date - please contact sales@daypilot.org if you'd like ...
Select multi resources?!?
Answered: In the Lite edition, the Scheduler control is not available. In the Pro edition, you need to load the event as multiple records if you want to display it in multiple rows (one per row).
Recurring Events which occur like: on 2nd monday of the month...
Hi Dan and Team, I've seen in your forums, requests for supporting rules such as: "Recurring Events which occur on second Monday of the month".. http://forums.daypilot.org/search?q=events+x+monday ht...
Including the scheduler daypilot into a directive with isolated scope
Answered: Since version 8.2 (http://javascript.daypilot.org/daypilot-pro-for-javascript-8-2/) the scheduler supports "publish-as" attribute which lets you specify the target for the DayPilot.Scheduler object. ...
VS 2010 version of hotel-room-booking-asp-net-c-vb-sql-server please...
Answered: Dave, If you open the TutorialHotel.sln file and change the following line (#2): # Visual Studio 2012 to # Visual Studio 2010 it should work.
Limit resources
Answered: DayPilot Scheduler doesn't limit the number of resources. However, there are different heigh settings that will affect how many resources/rows are visible without scrolling. Please take a look at the...
Booking for multiple tables
Answered: This scenario is not covered by the tutorial. However, you can select multiple time ranges at once using "time range multi-selecting" feature: http://doc.daypilot.org/scheduler/time-range-multi-selec...
Multiple resources timerangeselect
Answered: Yes, it's possible but you need to select the resources one by one (holding Ctrl): http://javascript.daypilot.org/demo/scheduler/multirange.html
Delete event in lite version
Answered: The Lite version doesn't implement the integrated "delete" icon. The best way to handle it would probably be including a special "Delete" button in the "Edit" modal dialog (just like Google Calendar ...
Daypilot Scheduler - Export to PDF
Answered: If you want to add custom header and footer to each PDF page simply use the code from "Add Title to PDF" section:
// create a graphics object for PDF page modification
XGraphics gfx = XGraphics.Fr...
External Drag and Drop in Monthly Calendar
Answered: Yes, but there is no set target date at the moment.
Ability to add/remove/update rows without updating entire control
Answered: You can find and modify the cells using cells.find(), cells.findXy() and cells.findByPixels() methods: http://api.daypilot.org/daypilot-scheduler-cells-find/ http://api.daypilot.org/daypilot-schedule...
Image/PDF Export for ASP.NET MVC
Answered: The next MVC version (8.2) will include client-side PNG export support. You can create the PDF on the client side using jsPDF (http://mrrio.github.io/jsPDF/). It will let you insert the exported PNG ...
api version
Answered: The ASP.NET WebForms version uses API v1 and it can't be changed. The selected api affects how the client-side events are processed. For api=1 only one event is fired for every action, depending on t...
Expected End Date
Answered: You can set custom CSS for an event using onBeforeEventRender. See also: http://doc.daypilot.org/scheduler/event-customization/ CSS
<style>
.expected .scheduler_default_event_inner {
...
Navigator highlights previous month while toggling between week and month view
Answered: You can change the navigator selection using .select() method:
var nav = new DayPilot.Navigator("nav");
// ...
nav.select(new DayPilot.Date()); // selects today