sencha touch 2 - phonegap/cordova local notification plugin how i display notification in a specific date and time? -
I am working in sencha touch and now i want to use local notification in my project so that i Local Notification
The problem I face can not just show my notification on a specific time and date. It instantly shows notifications as I click on the action button, please help me with this problem.
The example below should work. I tested it myself Keep in mind that if the date is your phone , The notification will be popped up directly after notification is set.
var startTime = new date ('2016', '0', '12', '12', '45'); // year // month - 1 (starts with month 0, so you have 0-11) // day // hour // minute Cordova Plugins.notification.local.schedule ({id: 1, title: 'hello world', text: 'my first notice', at: beginTime})
Comments
Post a Comment