Just having a start with JQuery, I have a webform where there is a
- Drop down list with numbers numbers 1,2,3 as items
- A gridview on the form (with text boxes on each row for taking inputs)
- If user selects 2 in dropdown list, 2 rows get added to the gridview with a textbox on each row
Currently I'm doing this with UpdatePanel & gridview server side. How do I do this with JQuery ?
Should I skip the gridview altogether and just drop a table on my webform & add rows to it via JQuery ?
How would I add the server side textboxes on each row ? Is there an easy alternate.
Thank you, Damien.