I have a button that will create a new entry (row in a table) dynamically using jquery. Each entry is a row in a html table.
for each row, each column has an input (textbox, radio button, checkbox) etc.
because you can add as many rows as you like you end up with some array or collection of these rows.
When i post the form, i dont seem to see this data in the formscollection and dont quite understand how to translate these controls into a data object for binding.
So essentially there is 2 questions:
Is there any issue with dynamically created controls and making sure they show up in the form post?
What is a way to pass along a table structure of data to my controller. I almost want to have each row represent some Record Object and then pass over a collection of records to teh controller if something like that is possible.
any suggestions?