Simplicty and flexibility!


Function::Internal

Int21
int21("event"[,"arg1","arg2","arg3","arg4"])
retval := int21("deSaveNow")


This function allow you to send a message to all servicewindows and will be caught by the event handler.

This will allow you to trigger events in the service windows based on your code.

You can also use this to send messages between servicewindows.

Parameters


Returns/Result


Examples


function deEventProcessor(eventname,arg1,arg2,arg3,arg4) {

//alert(eventname) ;

$('#myinfo').append(eventname+"|"+arg1+"|"+arg2+"|"+arg3+"|"+arg4+"\n") ;

switch(eventname) {

case "deListTable" :

break;

default:

}

}

Reference

See Also


On the forum about Int21

On the blog about Int21


dg3_HelpView