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...