Dataprocessor POST for Mobile Scheduler

I am using Dataprocessor POST for with the normal 3.6 Scheduler, and I m now trying to get a mobile scheduler working using the same file on the server to access the same data.

How do I implement the dataprocessor in POST mode in the mobile version.

In the normal version, I have the following code

var dp = new dataProcessor("myserver/my_dp.php");
dp.init(scheduler);
dp.setTransactionMode("POST");

How do I do this in the mobile version?

Is it just by using the following format?

dhx.ui({
view: "scheduler",
id: "scheduler",
save: "myserver/my_dp.php"
});

Is that enough to have enabled the dataprocessor?

If yes, how do I specify that I want to use POST instead of GET?

I found out through testing that the mobile scheduler seems to do POST by default.