Getting the value of a disabled <select> control

Hello,

I'm trying (without any success) to get the value of a disabled select
control. From reviewing:

http://www.w3.org/TR/html401/interact/forms.html#adef-disabl ed

It doesn't sound like it's going to be possible directly. I'm
thinking that I can get around it by enabling the select control
during some javascript that gets executed during the submit.

-Eric
eric.goforth [ Fr, 02 November 2007 20:38 ] [ ID #1861002 ]

Re: Getting the value of a disabled <select> control

Eric wrote on 02 nov 2007 in microsoft.public.inetserver.asp.general:

> Hello,
>
> I'm trying (without any success) to get the value of a disabled select
> control. From reviewing:
>
> http://www.w3.org/TR/html401/interact/forms.html#adef-disabl ed
>
> It doesn't sound like it's going to be possible directly. I'm
> thinking that I can get around it by enabling the select control
> during some javascript that gets executed during the submit.


Works fine here [IE7,FF2]:

<select id='a' disabled>
<option value='1'>1</option>
<option value='2' selected>2</option>
<option value='3'>4</option>
</select>

<script type='text/javascript'>

alert(document.getElementById('a').value) // shows 2

</script>



--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
exjxw.hannivoort [ Fr, 02 November 2007 20:51 ] [ ID #1861003 ]

Re: Getting the value of a disabled <select> control

Eric wrote:
> Hello,
>
> I'm trying (without any success) to get the value of a disabled select
> control.

I'm assuming you want the value in the form's submission.

> From reviewing:
>
> http://www.w3.org/TR/html401/interact/forms.html#adef-disabl ed
>
> It doesn't sound like it's going to be possible directly.

Right
> I'm
> thinking that I can get around it by enabling the select control
> during some javascript that gets executed during the submit.
>
Either that or use client-side script in the onsubmit event to put the value
in a hidden textbox in the form.

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
reb01501 [ Sa, 03 November 2007 16:04 ] [ ID #1861644 ]
Webserver » microsoft.public.inetserver.asp.general » Getting the value of a disabled <select> control

Vorheriges Thema: how to find quoteint in asp
Nächstes Thema: BLOB to MS Word via ASP/VBScript