I am looking at using the mobile scheduler and having a couple of questions.
-
How can I hide the bottom toolbar? I have my own toolbar and don’t want this one to show.
-
How can I change the interval? It defaults to 30 minutes but my users need the option of 15,30 or 60 minutes.
-
How can I change the top toolbar date format? I have tried this code below, but the date format never changes on the page
dhx.ready(function () { dhx.ui.fullScreen(); dhx.ui({ view: "scheduler", id: "scheduler", container: "appointments_container" }); dhx.i18n.fullDateFormat = "%Y-%m-%d %H:%i"; dhx.i18n.dateFormat = "%Y-%m-%d"; dhx.i18n.setLocale(); $$("scheduler").$$("buttons").setValue("day"); $$("scheduler").parse(data, "json"); });
-
What is the best way to set the current date other than clicking the Today button which is hidden (see question 1). Currently I am doing this
$(“input[Value=Today]”).click();