HI all
i want to open dialog box on web for allowing user to put comments
how to open that ?
when i put comments and clicks button no action is performing
what is the solution
HI all
i want to open dialog box on web for allowing user to put comments
how to open that ?
when i put comments and clicks button no action is performing
what is the solution
Subject: how to open dialog box on web client…
You can do this via javascript.
Create a button:
Create a function called disp_prompt:
function disp_prompt()
{
// this is what is in the prompt box
var name=prompt(“Please enter your name”,“”)
}
Subject: RE: how to open dialog box on web client…
my requirement is i have a form in that i created one layoutand one field in my main form i want to open this form in dialog box when i click on button this form should get open on web and the value should refelect on ain form filed how
t do this