I have a jQuery Mobile (1.0) app, that when inserting dhtmlxScheduler, won’t scroll.
It seems to be a compatibility issue with “dhtmlxscheduler_mobile.js”.
I added the scheduler to a div:
HTML:
<div id="schedulerDiv" style="height:417px;width:320px;"></div>
JAVASCRIPT:
dhx.ready(function(){
dhx.ui.fullScreen();
dhx.ui({
container: "schedulerDiv",
view: "scheduler",
id: "scheduler"
});
});
I tried to go back to the jQuery Mobile demo-page in its simplest form, but the output is still the same (this is with Phonegap in Xcode). I read here that others use Scheduler with jQuery Mobile, so - did anyone experience the same issue / have a fix?
Thanks,
Andrew.