Answered: You can pass a custom object as the third parameter but it will be sent in the body serialized to a JSON string: DayPilot.request(url, successCallback, postObject); If you need to send custom post pa...
Answered: The dates are interpreted as exact time points, i.e. when the start date is set to 01.01.2014 it means 2014-01-01T00:00:00, the end date 03.01.2014 means 2014-01-03T00:00:00. The difference between t...
Answered: DayPilot uses event.returnValue to prevent the default action conditionaly - only if event.preventDefault() method is not available. Most likely, this warning is not generated by DayPilot. Either way...
Hi, Do you have any spring application like this AJAX Event Calendar for Java and jQuery (Open-Source). I try to run AJAX Event Calendar for Java and jQuery (Open-Source) i can able to create event b...
Maybe there are more than one problem but i'm stuck at pretty much the first row. I am trying to allow my users to make the scheduler/calendar "fullscreen" by snapping it out of the main window into ...
Answered: This method was internal and is now hidden. You can use the following method to get information about a cell under certain position: var cell = dps.cells.findByPixels(120, 1)[0]; var start = cell.sta...
Answered: The Gantt API will be extended in the near future. At this moment you need to use viewType="Resources" and fill the Resources collection as necessary.
Answered: If you want to display background objects that do not match the cell dimension it might be better to use a special kind of events for that. You can apply custom CSS in BeforeEventRender to make them ...
Answered: There is a bug indeed. It works like this: 1. rowHeaderHeight sets the minimal width to be used. 2. rowHeaderWidthAutoFit checks the content and if it doesn't fit there the width is increased. It sho...
Answered: If you digg you shall find. Apparently you define what "tags" should be looked for in the row object. To define the tags i wrote this in the init-method: setDataTagFields("mytag1, mytag2"); Then: Row...
Hi, On IE9, the following code will fail: if ($m.Columns == null || $m.Columns.length == 0) { c.colSpan = $0P; $R.style.width = $1l + "px"; } else { ... Because if $0P == 0, then an execption is rais...
Answered: Thanks for reporting the bug. It's already fixed in the latest codebase and the fix will be included in the next release: http://java.daypilot.org/daypilot-pro-for-java-7-1/
Im using Navigator with my scheduler have set it up to use Monday as the first day of the week. It all works fine for summer months, but in the winter-time months suddenly Sunday has become the first...
Hi, I’m tried deploy java calendar with netbeans as web project, but without success. I tried create project from yours war file, also I tried create own with project with your files. Nothing worked,...
Answered: The week number will be displayed in the first header row if you use dps.cellGroupBy = 'Week'; You can always override the onBeforeTimeHeaderRender() to customize the header HTML: @Override public vo...
Answered: Erik, The resource bubble is now implemented in DayPilot Pro for Java. Example: Default.jsp dps.resourceBubble = new DayPilot.Bubble(); DpsServlet.java @Override public void onResourceBubble(Resource...
I'd like to make a feature request for daypilot for java. In my application Resources have parents, but a parent is not a bookable resource itself. For example: You are running a farm-holiday-resort....
How do I pass parameters to public class AXBackend extends org.daypilot.core.Backend from jsp page? Header field has only 1 String field called Control and it is always set to "dpc" (in Calendar case...