Populate select field from 1 to 100 - How?

Hello.

I need help with this. I need populate a select field from 1 to 100 and I need to do it for 10 fields. There is a way to put the start and the end to let scriptcase to do it self? If I do it manually it will be a pain!

Create a table with those values in it. Then connect your select field with a query to that table…
Alternatively you can do a select rownum from sometable where rownum<=100 on any big table you have lingering around …
Then do that for all 10 selects…

another method is this

create javascript method.

var $select = $(".numbers");
for (i=1;i<=100;i++){
$select.append($(’<option></option>’).val(i).html(i))

call the method onappini

then

{yourfield}=’<select class=“numbers”></select>’;

make sure you change field to label field and leave as text input