[ic] Modification in file CART = input field

Samir G. Barak interchange-users@lists.akopia.com
Sat Jun 2 18:22:01 2001


Hi !

In file "cart" (in ../templates/components)
I need change the input field "[quantity-name]"
for a list/menu (dropdown menu).

I do it in the others pages, for example, in
"results.html" page:

<input type=hidden name="mv_oi[item-increment]" value="">
<select name="mv_order_quantity">
<option value="" selected>-= click here =-</option>
<option value="2">Payment Bimonthly</option>
<option value="3">Payment Quarterly</option>
</select>

But in this file ("cart") I am not really getting
to do.

The original source is:

<INPUT TYPE=text NAME="[quantity-name]" VALUE="[item-quantity]" SIZE=3>

I already tried to change for:

<input type=hidden name="[quantity-name]" value="[item-quantity]">
<select name="[item-quantity]">
<option value="2">Payment Bimonthly</option>
<option value="3">Payment Quarterly</option>
</select>

But that didn't work.

Someone can help me, one more time, please ?


Thanks
Samir G. Barak