From my experience you should choose between Mobi Pick and Mobiscroll.
Datebox
I found some problems with Datebox processing on my previous Android phone (Galaxy S2), except that Datebox is close to Mobi Pick (performance potential + configuration potential). The main difference between Datebox and Mobi Pick is the final design.
Working jsFiddle example: http://jsfiddle.net/Gajotres/ktbcP/
<input name="mydate" id="mydate" type="date" data-role="datebox" data-options='{"mode": "datebox", "useNewStyle":true}'/>
Mobiscroll
Mobiscroll has many more options and skins. It can be much better integrated into jQM, and it has a much more responsive interface, unfortunately, it has performance problems on Android 2.X phones (no problems with iPhone devices).
Working jsFiddle example: http://jsfiddle.net/Gajotres/WDjfR/
$(document).on('pagebeforeshow', '#index', function(){ $('#demo').mobiscroll().date({ invalid: { daysOfWeek: [0, 6], daysOfMonth: ['5/1', '12/24', '12/25'] }, theme: 'android-ics', display: 'inline', mode: 'scroller', dateOrder: 'dd mm yy', dateFormat : "dd-mm-yy" }); });
Mobipick
I would choose Mobi Pick over Mobiscroll if you are satisfied with your interface. If you are not using Mobiscroll.
JsFiddle working example: http://jsfiddle.net/Gajotres/zyVjE/
$(document).on('pagebeforeshow', '#index', function(){ $('#demo').mobipick({ dateFormat: "MM-dd-yyyy" }); });
More details
A detailed overview and examples can be found here .