4xz
03-05-2005, 04:28 PM
I use a disabled selectbox in a form, which has 1 option selected, the option HAS a value. When the form gets submitted, it is not submitting the disabled field ??
<select disabled='disabled' name='fab_id' id='fab_id' size='1'>
<option value='1'>Quick-Step</option>
<option value='2'>Balterio</option>
<option selected='selected' value='3'>Berry Floor</option>
<option value='4'>Novofloor</option>
<option value='7'>Eiken vloerdelen</option>
<option value='5'>Pergo</option>
<option value='6'>Huiscollectie</option>
<option value='8'>Tropisch hardhout</option>
<option value='9'>Kasteelvloeren</option>
</select>
When this element is submitted, the value is gone ?? Without the disabled='disabled' argument the value is coming through....
Is this normal form behaviour ?
<select disabled='disabled' name='fab_id' id='fab_id' size='1'>
<option value='1'>Quick-Step</option>
<option value='2'>Balterio</option>
<option selected='selected' value='3'>Berry Floor</option>
<option value='4'>Novofloor</option>
<option value='7'>Eiken vloerdelen</option>
<option value='5'>Pergo</option>
<option value='6'>Huiscollectie</option>
<option value='8'>Tropisch hardhout</option>
<option value='9'>Kasteelvloeren</option>
</select>
When this element is submitted, the value is gone ?? Without the disabled='disabled' argument the value is coming through....
Is this normal form behaviour ?