01-24-2013 08:13 PM
I have this code in a simple HelloCascades app....but the dialog doesn't show. Any idea what I am missing? Thanks.
NotificationDialog *notification = new NotificationDialog(this);
notification->setTitle("TEST");
notification->setBody("THIS IS THE BODY");
SystemUiButton *yesButton = new SystemUiButton("Yes");
SystemUiButton *noButton = new SystemUiButton("No");
notification->appendButton(yesButton);
notification->appendButton(noButton);
notification->show() ;
Solved! Go to Solution.
01-24-2013 08:25 PM
01-24-2013 09:27 PM
Your sample works fine from QML. I saw the difference in the projects. I didn't realize I had to set permission for "Post Notifications". Thanks for the help.
01-24-2013 09:28 PM