WebsiteBaker Support (2.8.x) > Bakery Shop
dropdown instead of input field
(1/1)
mgeene:
I would like a dropdown option when filling in the numbers of article instead of a input field, is this possible and how to realize that?
Thanks for your comment
marmot:
Hi,
in the pages settings find the input for overview and replace
--- Code: ---<input type="text" name="item[ITEM_ID]" class="mod_bakery_main_input_f" value="1" size="2" />
--- End code ---
with something like
--- Code: --- <select class="mod_bakery_main_input_f" name="item[ITEM_ID]" size="1">
<option>1</option>
<option>2</option>
<option>3</option>
</select>
--- End code ---
for the detail view do something similar in the details footer input field.
regards
mgeene:
Thanks for your answer, plain and simple!
Navigation
[0] Message Index
Go to full version