I have Button if I click on it shows message to everyone who online on my web site
-
1Please update your question. Specify your purpose, show us what you have tried so far and what problem you are facing. – Jul 29 '17 at 03:55
-
before I upload bin files. I want to show alert box to users to tell them a web site will have a Maintainance after 5 minutes – ali nagi Jul 29 '17 at 04:00
-
Possible duplicate of [How to show maintenance page during deployment?](https://stackoverflow.com/questions/819184/how-to-show-maintenance-page-during-deployment) – Arun Vinoth-Precog Tech - MVP Jul 30 '17 at 02:58
-
You want to notify users when you are doing deployments, refer the duplicate question I referred. – Arun Vinoth-Precog Tech - MVP Jul 30 '17 at 02:59
1 Answers
If you want user to just get informed you can use alert method from window object https://www.w3schools.com/jsref/met_win_alert.asp
e.g
alert("Save Document!");
or if you want to give user option during alert like "save" or "cancel" you can use confirm https://www.w3schools.com/jsref/met_win_confirm.asp
var bol = confirm("Save Document");
if (bol) {
doSaveThenRemoveToSystem();
} else { //doNothing
}
UPDATE:
if you want a global alert message to all login users that will be sent before you upload your bin files, then that will require more than an alert or confirm implementation.
What you need is to implement Observable Pattern wherein login users will listen to the provider/source changes. so if you are about to upload anything the program first will update the users by updating the source object they are listening.
Depending on the technology you are using with your webapp whether you are using jsf or not, I assume you are just using plain javascript/html tech you can just send a request to the server from user session/browser to get the latest state of the object they are listening. (given this object is a singleton bean created upon spring initialization), if the values are changed then you trigger alert messages to users within a span of time.
Since the question it self is not that intuitive please excuse me if I am getting the wrong idea.

- 659
- 1
- 6
- 13
-
this will work on my page only, I want to show the message for everyone has a login on my web site – ali nagi Jul 29 '17 at 04:16