I'm trying to change the 5th column's table data in my Jquery DataTable, by going to the specific table row ID. By default, all of my table rows have an id of row<id number>. For example:
<tr id="row147">
<td>147</td>
...
To attempt to change a specific table data cell, I tried something like this
table.row("#row" + data.job_id).data(variable).draw()
But this writes data across the entire row in each table data cell. How do I specify the table data cell within the row and just have it write in that with the DataTables API?
table.row(row).column(5).data(variable).draw(), and while it isn't throwing any error, it is not updating the cell in that column.