Guest User

Untitled

a guest
Nov 28th, 2017
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. if(OS_ANDROID){
  2. var picker = Ti.UI.createPicker();
  3. picker.showDatePickerDialog({
  4. callback: function(e) {
  5. if (e.cancel) {
  6.  
  7. } else {
  8.  
  9. var giornidata=e.value;
  10. giornitext=giornidata.getDate()+"/"+parseInt(giornidata.getMonth()+1)+"/"+giornidata.getFullYear();
  11. giornid=giornidata.getFullYear()+"-"+parseInt(giornidata.getMonth()+1)+"-"+giornidata.getDate();
  12. $.data.value=giornitext;
  13. }
  14. }
  15. });
  16. }
Add Comment
Please, Sign In to add comment