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
Hi,
in the pages settings find the input for overview and replace <input type="text" name="item[ITEM_ID]" class="mod_bakery_main_input_f" value="1" size="2" />
with something like <select class="mod_bakery_main_input_f" name="item[ITEM_ID]" size="1">
<option>1</option>
<option>2</option>
<option>3</option>
</select>
for the detail view do something similar in the details footer input field.
regards
Thanks for your answer, plain and simple!