setParent and setWeekStartDay in Touch Calendar

I want to build a mobile web application version of a site that has the dhtmlxcalendar on it. I assume that the touch version of calendar is the suggested route to take in this instance, but I need to be able to set the first day of the week to Sunday, and to set the parent to the content div on the page so that my custom header(with application navigation) and footer will still appear as they do in the regular browser pages. It seems like the touch calendar takes over the entire page, so I have to choose between seeing the header of the calendar and the custom header on my mobile site, but I would really like to have both since they offer different functionality. Is there a way to do this with the Touch version of calendar?

Hello,

Are you asking about Scheduler or Calendar ?

In case Calendar you may disable startOnMonday property:

{view:“calendar”, startOnMonday:false, … }

and to set the parent to the content div on the page so that my custom header(with application navigation) and footer will still appear as they do in the regular browser pages.

You can use rows layout:
1st row - header
2 - calendar
3 - footer

dhx.ui({ type:"clean", rows:[ {template : "<b>Header</b>", height : 20}, {view:"calendar"}, {template : "<b>Footer</b>", height : 20}, ] })