Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if(OS_ANDROID){
- var picker = Ti.UI.createPicker();
- picker.showDatePickerDialog({
- callback: function(e) {
- if (e.cancel) {
- } else {
- var giornidata=e.value;
- giornitext=giornidata.getDate()+"/"+parseInt(giornidata.getMonth()+1)+"/"+giornidata.getFullYear();
- giornid=giornidata.getFullYear()+"-"+parseInt(giornidata.getMonth()+1)+"-"+giornidata.getDate();
- $.data.value=giornitext;
- }
- }
- });
- }
Add Comment
Please, Sign In to add comment