Monday, February 27, 2012

Get the Run time Input from Server side script in Xpages

Yes We are able to get the run time input box from server side script...

With the use of Java class, It is very very simple...

The following code is used to make the message box in server side javascript in Xpage...

var msg:javax.swing.JOptionPane=new javax.swing.JOptionPane();
var GetMessage=msg.showInputDialog("Server Side InptBox...");
msg.showMessageDialog(null,GetMessage);

No comments:

Post a Comment