Hello Amitava,

[EMAIL PROTECTED] a écrit :
I want <html:option selected="true"> xxx </html:option>

Is there a way out to select a default value at design time? (I hate javascript!!....... lol. )

You could always prepopulate your form before forwarding to the JSP :

public ActionForward execute(...) {
  form.setMySelect("my value");
  ...

  return mapping.findForward("/toMyJsp");
}

--
Stéphane Zuckerman

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to