Hi,
I'm new to the field of javascript, and I want move the row detail column to last of record.
http://www.datatables.net/examples/api/row_details.html
I think the column with details_open.png was specified by following code to be insert to first of record, but I don't know how to modify it to be insert to last of record.
Please give me an advice.
I'm new to the field of javascript, and I want move the row detail column to last of record.
http://www.datatables.net/examples/api/row_details.html
I think the column with details_open.png was specified by following code to be insert to first of record, but I don't know how to modify it to be insert to last of record.
$('#example thead tr').each( function () { this.insertBefore( nCloneTh, this.childNodes[0] ); } ); $('#example tbody tr').each( function () { this.insertBefore( nCloneTd.cloneNode( true ), this.childNodes[0] ); } );
Please give me an advice.