Re: Mapping disabled form fields

2006-10-17 Thread Angelo zerr
Hi Yariel, i's the standard behaviour of HTML input. See HTML sepcification at http://www.w3.org/TR/html4/interact/forms.html#h-17.12 You must not use disabled property but readonly property in your html input. Regards Angelo 2006/10/17, Yariel Ramos Moreno [EMAIL PROTECTED]: Hi all: I need

Re: Mapping disabled form fields

2006-10-17 Thread Angelo zerr
Hi Yariel, I know this problem, you can generate an input hidden with value of checkbox (to get value off the checkbox after a post) and generate the radio with disabled property (for display). For this case, you must manage two html fields in your JSP. Morever if you want mange html select, the

Mapping disabled form fields

2006-10-16 Thread Yariel Ramos Moreno
Hi all: I need to put some disabled form fields into my page. When I fill the components with the server data, not problem, everything goes well. But, when I submit the form the values of those components are not mapped to the ActionForm (it's value is the default one). What can I do to solve

Mapping disabled form fields

2006-10-16 Thread Yariel Ramos Moreno
Hi all: I need to put some disabled form fields into my page. When I fill the components with the server data, not problem, everything goes well. But, when I submit the form the values of those components are not mapped to the ActionForm (it's value is the default one). What can I do to solve