JQuery Datatables Add new Row

后端 未结 3 1460
野趣味
野趣味 2021-02-06 11:22

I\'m creating a registration page where someone can register up to 20 other people if they wanted to. So I have these text boxes:

First Name: 
3条回答
  •  孤街浪徒
    2021-02-06 12:19

    This can also be helpful but not always at times. I have debugged this myself and will not take much time even if you have more data.

    var table = $(".tableclassName")["1"]
    var tableClone = $(".tableclassName")["3"]
    $(yournewrowtext).insertAfter(table.children["1"].children[currentRowId]);
    $(yourfirstcolumn).insertAfter(tableClone.children["1"]. 
    children[currentRowId]);
    

    Note: If you are not using fixed column then you can remove this line $(yourfirstcolumn).insertAfter(tableClone.children["1"].

提交回复
热议问题