Im looking to build a nice form which a supplier can quote prices on. SO the form will have Labels down the left hand side and then their would be a Column per requested Product/Quantity from the buyer. So it would have n number of columns.
Because of the way html tables are coded you need to build a row at a time. (I want to keep this as one table so its neat HTML)
Before I go ahead and create Repeater for each row of information the user needs to enter. Is their a way to be able to create a sorta grid view but instead of each records you pass it going to create a new row. It would create a new column and you could define the first column as the header column?
My table sort design is (txtb stands for textbox and lbl stands for label which is updated as values are entered)
Quantity 500 1000 2000
Delivery Cost txtb txtb txtb
Pricing txtb txtb txtb
Total Cost lbl lbl lbl
Exchange Rate txtb txtb txtb
Thanks
May I suggest using
ultags (unordered lists). They suite your requirement much more easier, as I’ve done it in a similar situation. Table will cause you many pains down the way.