Thanks, thats useful
Is there any time based controls I can use? I'm trying to write a scheduler that works off hourly increments. So time pickers are required.
ALSO, is there anywhere I can download a NON minified DayPilot library? So I can debug what I'm doing wrong. I'm struggling to populate a select. And I often find it easier to diagnose MY errors by debugging the vendor code.
I'm basically doing this:
DayPilot.Modal.form([
{ "name": "start", "id": "txtStartDate", "dateFormat": "dd/MM/yyyy" },
{ "name": "end", "id": "txtEndDate", "dateFormat": "dd/MM/yyyy" },
{ "name": "resource", "id": "resource", "type": "select", "options": [ JSON.stringify(resourceOptions) ]}
],
resourceOptions is a JSON XHR result containing id/name key pairs, but for some reason the select is empty. (Anfd yes, the request is returning data)
Thanks,
Chris