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

RE: How to disable the submit button after first click

2006-07-14 Thread Robert Langridge
If you a variable to the sessionscope called disableSubmit for example you can do it with ease. After the first press set disableSubmit = "disable". Have the default setting of disableSubmit = "" Sorted :) Rob Langridge Analyst Programmer - Java CoE e: [EMAIL PROTECTED] -Original Mess