What is the best method in jQuery to add an additional row to a table as the last row?
|
11
|
|||||||||||||
|
|
|
The approach you suggest is not guaranteed to give you the result you're looking for - what if you had a
You would end up with the following:
I would therefore recommend this approach instead:
You can include anything within the Update: Revisiting this answer following recent activity with this question. eyelidlessness makes a good comment that there will always be a DaRKoN_ suggests appending to the Weighing everything up, I'm not sure there is a single one-line solution that accounts for every single possible scenario. You will need to make sure the jQuery code tallies with your markup. I think the safest solution is probably to ensure your
|
||||||||||||||
|
|
|
I was having some related issues, trying to insert a table row after the clicked row. All is fine except the .after() call does not work for the last row. $('#traffic tbody').find('tr.trafficBody).filter(':nth-child(' + (column + 1) + ')').after(insertedhtml); I landed up with a very untidy solution: create the table as follows (id for each row): ... ... ... etc ... and then : $('#traffic tbody').find('tr.trafficBody' + idx).after(html); |
||||
|
|
|
JQuery has a built-in facility to manipulate DOM elements on the fly. You can add anything to your table like this:
The This is some pretty weird indenting, but it's easier for you to see what's going on in this example. |
||
|
|
|
|
How about when we add another features like having a datepicker to the input field in that table cell? Mine is not working currently... I use jquery.tables and jquery.datepicker in the same table... any help? |
||
|
|
|
|
You can use this great jQuery add table row function. It works great with tables that have Here is an example usage:
|
||||||
|
|
|
Well, what if you had a tfoot? such as:
Then it would insert your new row in the footer - not to the body. Hence the best solution is to include a
|
||||||||
|
|
|
Is this acceptable:
Are there limitations to what you can add to a table like this (such as inputs, selects, number of rows)? |
||
|
