views:

26

answers:

1

I need to design an order form where one row represents and order line and the customer can add item to order. I then want to display a new row under then added row for the customer to add another item.

I'm thinking I should use a DataForm, but how do I display all rows at once rather than paging through the line items?

A: 

Damn why do I always find the answer right after I've posted on StackOverflow!

So, I've kind of figured it out thanks to this post.

Basically, use a DataGrid to list the line items and just .Add a lineitem.

mattRo55