Questions tagged [notifications]

A notification is a user interface element displayed to indicate an event has occurred.

A notification is a user interface element displayed to indicate an event has occurred.

Notifications typically occur in a designated area of an application's UI, such as an icon appearing in a status bar or an alert message.

15974 questions
52
votes
3 answers

Toastr: How to prevent fade out with sticky toast on mouseover?

I've been playing with toastr and have successfully set the timeout to 0 so the toast remains sticky, however the toast disappears when I mouse out of the toast. I'd like to override this so the toast only goes away if the user clicks it - ideal…
SB2055
  • 12,272
  • 32
  • 97
  • 202
51
votes
5 answers

HTML5 Notification not working in Mobile Chrome

I'm using the HTML5 notification API to notify the user in Chrome or Firefox. On desktop browsers, it works. However in Chrome 42 for Android, the permission is requested but the notification itself is not displayed. The request code, works on all…
Jorn
  • 20,612
  • 18
  • 79
  • 126
51
votes
3 answers

Is Silent Remote Notifications possible if user has disabled push for the app?

In my settings tabbar: I have a feature specific switch which can be turned OFF or ON based on API response. From website only admin is authorized to turn ON/OFF. I can make /user API call everytime on settings tap to check the current settings for…
Tariq
  • 9,861
  • 12
  • 62
  • 103
49
votes
5 answers

Are there any JavaScript library for cross browser desktop notification?

I know W3C just publish their draft version of Web Notification to notify user. So, there is no browser that implement this method in their current or latest build browser. Web Notifications Overview After I search a lot of webs for finding all…
user94893
49
votes
10 answers

How to require commit messages in VisualSVN server?

We've got VisualSVN Server set up as our Subversion server on Windows, and we use Ankhsvn + TortoiseSVN as clients on our workstations. How can you configure the server to require commit messages to be non-empty?
Ben Collins
  • 20,538
  • 18
  • 127
  • 187
49
votes
1 answer

How to deal with Mac OS X Helper/Main app architecture regarding core data, shared preferences and notifications?

I'm having some architectural doubts about a project (Mac OS X app) I'm working on. It basically consists of two elements: a daemon that runs in the background gathering some data and a viewer used to represent the gathered data. The daemon should…
Niels Mouthaan
  • 1,010
  • 8
  • 19
48
votes
10 answers

Cancel UILocalNotification

I have a problem with my UILocalNotification. I am scheduling the notification with my method. - (void) sendNewNoteLocalReminder:(NSDate *)date alrt:(NSString *)title { // some code ... UILocalNotification *localNotif =…
f0rz
  • 1,495
  • 2
  • 14
  • 26
48
votes
7 answers

About refreshing objects in sqlalchemy session

I am dealing with a doubt about sqlalchemy and objects refreshing! I am in the situation in what I have 2 sessions, and the same object has been queried in both sessions! For some particular thing I cannot to close one of the sessions. I have…
k-ter
  • 958
  • 1
  • 8
  • 20
48
votes
7 answers

How to create a system tray popup message with python? (Windows)

I'd like to know how to create a system tray popup message with python. I have seen those in lots of softaware, but yet difficult to find resources to do it easily with any language. Anyone knows some library for doing this in Python?
Roman Rdgz
  • 12,836
  • 41
  • 131
  • 207
46
votes
3 answers

Why is my smallIcon for Notifications always greyed out?

I tried making the small icon exactly 16x16, gray-scaled, nothing but gray and white (the gray color being hex value 616161), to create a silhouette of my application icon. Yet no matter what it just shows up as a white/gray square in the…
user8367195
  • 467
  • 1
  • 4
  • 7
46
votes
5 answers

Is possible set Expanded Notification as default in Big Text Notifications?

I followed this Sample Code In Big Text Notifications section, he said that need expand to see Big text notification form, as image im below : I wonder that we can not set Expanded Notification as default in Big Text Notifications? People who know…
Huy Tower
  • 7,769
  • 16
  • 61
  • 86
46
votes
8 answers

Cross-platform desktop notifier in Python

I am looking for Growl-like, Windows balloon-tip-like notifications library in Python. Imagine writing code like: >>> import desktopnotifier as dn >>> dn.notify('Title', 'Long description goes here') .. and that would notify with corresponding…
Sridhar Ratnakumar
  • 81,433
  • 63
  • 146
  • 187
45
votes
3 answers

How to read all the coming notifications in android

How to read all the coming notifications in android. Is it possible to use the broadcast receiver to listen the incoming notifications and the ability to read the notifications information.
Adham
  • 63,550
  • 98
  • 229
  • 344
44
votes
4 answers

What is the best epoll/kqueue/select equvalient on Windows?

What is Windows' best I/O event notification facility? By best I mean something that ... doesn't have a limit on number of input file descriptors works on all file descriptors (disk files, sockets, ...) provides various notification modes (edge…
blackwing
  • 3,154
  • 3
  • 23
  • 20
44
votes
2 answers

How would you create a notification system like on SO or Facebook in RoR?

I'm thinking that notifications would be it's own resource and have a has_many, through relationship with the user model with a join table representing the associations. A user having many notifications is obvious, and then a notification would have…