im trying to save the date which is choosen in the dateTime picker of the Blackberry Playbook. Therefor i use the dateTimeAsync method:

function onDateTimeSelected(datetime){
  localStorage.setItem('countup_date', datetime);
}  

function dateTimeAsync(htmlDateTimeInput) {
  try {
    var opts = { "value" : htmlDateTimeInput.value,
                  "min"   : htmlDateTimeInput.min || "",
                  "max"   : htmlDateTimeInput.max || "",
    };


    blackberry.ui.dialog.dateTimeAsync("date", opts, window.onDateTimeSelected);
  }catch (e) {
    alert("Exception in dateTimeAsync: " + e);
  }
}

its exactly how its written in the docu. But the callback function onDateTimeSelected(datetime) is not invoked...why?

im testing on blackberry playbook simulator...

link|improve this question
You are developing for Playbook? since HTML5 local storage is only supported in playbook. – Praveen Vijayan Feb 26 at 6:04
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.