Dear support,
http://202.75.84.150/mobile/showScheduler.php
Please refer to the event detail page of 24 April 2015.
Because of the table is too long causing some information cannot be shown, so I would like to make this detail page to be scrollable. Could you please advise how to do it?
Thanks
Try to set scroll for this view:
$$(“scheduler”).$$(“eventTemplate”).define(“scroll”,true);
Code is added, but it can’t fix it
I tried on Chrome of mobile device
Sorry, my first post was not correct. Scroll should be set directly in view configuration.
As the workaround you can add “webix_scroll_cont” className to template content:
$$("scheduler").$$("eventTemplate").define("scroll",true); $$("scheduler").$$("eventTemplate").$view.firstChild.className += " webix_scroll_cont";
thanks Maria~ it works!