Show Alert

Sample code to append an alert:
  1. $( '#displayAlert_b' ).click(function(){
  2. kdp.sendNotification( "alert", {
  3. 'title': 'This is a different title',
  4. 'message': 'This is a different HTML message',
  5. 'buttons': [],
  6. 'callbackFunction': 'testFunc',
  7. 'iconClass': 'testClass',
  8. 'isExternal': true, // KDP defaults to false
  9. 'isModal': true,
  10. 'props': {'titleTextColor': '0xFF00FF','textColor': '0xFFFF00'}
  11. });
  12. });