Hello,
I’m developing a mobile app using phoneGap and jQuery mobile. It seems that if I want the mobile scheduler to resize when a device is rotated then I can’t use a containing div. The problem is that if I don’t use a containing div the scheduler takes up the entire screen of the device and the bottom tool bar is not visible. Is this a conflict between the mobile scheduler and jQuery Mobile?
This is how I have the scheduler configured:
scheduler.config.readonly = true;
scheduler.config.header_date = “%M %j, %Y”;
scheduler.config.item_date = “%l %F %j, %Y”;
scheduler.config.hour_date = “%h:%i%a”;
scheduler.config.scale_hour = “%h”;
dhx.ready(function(){
dhx.ui.fullScreen();
dhx.ui({
view: “scheduler”,
scroll: true,
id: “scheduler”,
height:“550px”
});
$$(“scheduler”).parse(data, “json”);
$$(“scheduler”).$$(“dayList”).scrollTo(0,31*8);
$$(“scheduler”).$$(“buttons”).setValue(“day”);
$$(“scheduler”).$$(“day”).show();
});
Any advice is greatly appreciated.
Josh