Email is always a good option as well. You could have Witango send an email
to the email address of the logged in user. For the kind of instant
notiification though you are talking about they would always have to have
thier email up. if the pop-up notification is a deal breaker you could
utilize a hidden from that
onLoad checks the db if a new change or assignment gets posted since the
last page was loaded this would pick up new changes on each page load. you
could also supplment this by placing a meta refresh in the hidden from to
run the same query every n period of time, this would catch those between
page loads, and if a change was detected you would use jscript to pop a
centered, sized and styled window to alert the user. for this you have
several options
you could use a plain ol' browser window pop up or you could even exp;oit
the javascript alert and confirm actions. the Alert specifing that chages or
new assignmets are availble and the confirm directing the user to an html
pop up of the cahnge summary.


Auto centering pop up
<html>

<head>
<script language="javascript">

/*
Auto center window script- Eric King (http://redrival.com/eak/index.shtml)
Permission granted to Dynamic Drive to feature script in archive
For full source, usage terms, and 100's more DHTML scripts, visit
http://dynamicdrive.com
*/

var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollba
rs='+scroll+',resizable'
win = window.open(mypage,myname,settings)
}

</script>
</head>

<body>

<a href="http://wsabstract.com";
onclick="NewWindow(this.href,'name','400','400','yes');return false">Website
Abstraction</a>

</body>

</html>

Alert and confirm


<!-- TWO STEPS TO INSTALL CONFIRM (ALERT):

   1.  Paste the coding into the HEAD of your HTML document
   2.  Add the last code into the BODY of your HTML document  -->

<!-- STEP ONE: Copy this code into the HEAD of your HTML document  -->

<HEAD>

<SCRIPT LANGUAGE="JavaScript">

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!--  Begin
function askData() {
var inputedData =  prompt ("type something!", "" );
if (confirm("Are you sure you typed "+inputedData+"?")) {
alert ("Ok, you did type "+inputedData+"!");
}
else {
alert ("No, you did not type "+inputedData+", did you?  OK.  Guess ya
did.");
   }
}
// End -->
</SCRIPT>

<!-- STEP TWO: Put this code into the BODY of your HTML document  -->

<BODY>

<CENTER>
<FORM>
<input type=button value="Confirm (Alert)" onClick="askData()">
</FORM>
<!-- Or another method...  --><BR>Or....<BR>
<A HREF="" onMouseover="askData()">Confirm & Alert</A>
</CENTER>

<p><center>
<font face="arial, helvetica" size="-2">Free JavaScripts provided<br>
by <a href="http://javascriptsource.com";>The JavaScript Source</a></font>
</center><p>

<!-- Script Size:  1.03 KB -->




csmith



----- Original Message -----
From: "Dan Stein" <[EMAIL PROTECTED]>
To: "Multiple recipients of list witango-talk" <[EMAIL PROTECTED]>
Sent: Tuesday, October 29, 2002 3:16 PM
Subject: Witango-Talk: Can Witango do this?


> I have a client who is in manufacturing and wants a system that will
enable
> them to manage the production process from idea creation through all
design
> approval process, testing, building, and shipping.
>
> I can see how I can accomplish this with Witango and SQL 2000 but they
also
> want a notification system that generates a screen message on a client
> computer based on a change or assignment in the product process. Sort of
an
> instant messenger but tied into the DB and application.
>
> Not sure how to do that.
>
> Would everyone need fixed IP addresses so we could find them as logged in?
> Any ideas appreciated.
>
> Dan
>
>
> --
> Dan Stein
> Digital Software Solutions
> 799 Evergreen Circle
> Telford PA 18969
> Land: 215-799-0192
> Mobile: 610-256-2843
> Fax 413-410-9682
> FMP, WiTango, EDI,SQL 2000
> [EMAIL PROTECTED]
> www.dss-db.com
>
>
> ________________________________________________________________________
> TO UNSUBSCRIBE: send a plain text/US ASCII email to [EMAIL PROTECTED]
>                 with unsubscribe witango-talk in the message body

________________________________________________________________________
TO UNSUBSCRIBE: send a plain text/US ASCII email to [EMAIL PROTECTED]
                with unsubscribe witango-talk in the message body

Reply via email to