Palm Pre Dashboard notification

492 Views Asked by At

How can I get Dashboard notification in my Palm-Pre application?

2

There are 2 best solutions below

0
On

A dashboard notification is just another view in the application. Dashboard panels are covered in the Mojo SDK documentation at http://developer.palm.com/index.php?option=com_content&view=article&id=1632.

0
On

Call this.notify() and declare notify() as following

YourAssistant.prototype.notify = function(custom,event) {
    console.log("################# NOTIFY ############")
    var target = custom;
    var appController = Mojo.Controller.getAppController();
    this.controller.commitChanges();
    var bannerParams = {
        soundClass: '', 
        soundFile: '', 
        icon: '',
        messageText: 'hahaha hahaha'
    }
    appController.showBanner(bannerParams, {banner: this.message});
}