<WOSubmitButton action="">
<WORepetition list=openOrderItems, item=aOrderItem>
<WOString
value=aOrderItem.Order.DueDate>,<WOString
value=aOrderItem.Part.PartName>,<WOString
value=aOrderItem.orderQuantity><WOTextField
value=quantityToSchedule>
</WORepitition>
</WOForm>
you cannot bind to a single mathod an potentially illimited number of WOTextField, you need to add an attribute to you aOrderItem Model and bind it <WOTextField value=
aOrderItem.quantityToSchedule> then when you submit the form you'll find inside EVERY your repetition objects method quantityToSchedule(), the value you insert inside the WOTextField.
this is the first Idea I get, but probably there are other way to do this, I think my idea is realy easy, so, if you want to try...