Re: html:select disable problem

2006-07-19 Thread Vinicius Carvalho
Thanks all, we solved this using hidden fields :) Thanks On 7/18/06, Laurie Harper <[EMAIL PROTECTED]> wrote: Vinicius Carvalho wrote: > Hello there! I believe this is an HTML/HTTP issue, but... > > I have a userForm that some of the fields (selects) when the user is > editing must come as read

Re: html:select disable problem

2006-07-18 Thread Laurie Harper
Vinicius Carvalho wrote: Hello there! I believe this is an HTML/HTTP issue, but... I have a userForm that some of the fields (selects) when the user is editing must come as readonly (disabled). Well, that's almost ok, because I need that data on the action called by the form, and those values ar

RE: html:select disable problem

2006-07-18 Thread Robert Langridge
Could you use the html standard attribute 'disabled'? For example: would make your select box disabled and effectively read only. disabled='' is selectable (default) disabled='disabled' is read only. Simply put this attribute is a session/request scope variable and that should do the job Rob