Re: Form pre-fill issue

2006-01-28 Thread Karthik Manimaran
Works perfect. Thanks a lot. regards, Karthik. On 1/28/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > > > You might try taking the type, name, and method attributes out of the > html:form tag. In particular, the name and type attributes are meant to > specify the request ( or maybe sess

Re: Form pre-fill issue

2006-01-28 Thread Paul Benedict
It must be the query parameters you stuck in the action name. I never seen that before. Turn those into html hidden fields and try again? --- Karthik Manimaran <[EMAIL PROTECTED]> wrote: > The bean property however is getting printed when jsp tags are used as > shown below. But html:text tag do

RE: Form pre-fill issue

2006-01-28 Thread [EMAIL PROTECTED]
You might try taking the type, name, and method attributes out of the html:form tag. In particular, the name and type attributes are meant to specify the request ( or maybe session ) scoped object with which this form should work. If you mean to work with the action form that is defined in

Re: Form pre-fill issue

2006-01-28 Thread Karthik Manimaran
The bean property however is getting printed when jsp tags are used as shown below. But html:text tag doesnt populate the value. <%@ page language="java" %> <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %> <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %> "/> submit O

Re: Form pre-fill issue

2006-01-28 Thread Karthik Manimaran
Hi, Even after giving the fully qualified class name it doesn't work. Thanks and regards, Karthik. On 1/28/06, Debendra Barik <[EMAIL PROTECTED]> wrote: > > Hello, > its appearing that you are using the type attribute inside the > tag, its ok but you have to give fully qualified class name of

Re: Form pre-fill issue

2006-01-28 Thread Debendra Barik
Hello, its appearing that you are using the type attribute inside the tag, its ok but you have to give fully qualified class name of the ActionForm which you are using in the form-bean section of your struts-config.xml. that is type="com.bofa.ecomm.snf.web.privacy.PrivacyPreferencesBean" N