Product Option Types - Sorting Dropdowns For the longest time, my dropdowns always sorted properly. Now some do and some don't. Here is a "view source" print-out from what appears on the web. Why does one go from 1 to 10 and the other from 10 to 1 on the same product_info_tpl ? How can I fix this?
Thanks,
Lobo
This one is correct, sorted correctly from option value 10, down to 2.
<td class="main">Sales Rep:</td>
<td class="main"><select name="id[7]"><option value="10">[None]</option><option value="9">Kathryn</option><option value="8">Vicky</option><option value="7">Rebecca</option><option value="6">Lissa</option><option value="5">Holly</option><option value="3">Sharon</option><option value="2">Angie</option></select></td>
This one is NOT correct, sorted incorrectly from option value 2 up to 10 (the reverse!)
<td class="main">Sales Rep:</td>
<td class="main"><select name="id[7]"><option value="2">Angie</option><option value="3">Sharon</option><option value="5">Holly</option><option value="6">Lissa</option><option value="7">Rebecca</option><option value="8">Vicky</option><option value="9">Kathryn</option><option value="10">[None]</option></select></td> |