Can you redraw an existing row without changing its index?
Can you redraw an existing row without changing its index?

My redrawing is messing my index up and hence i am not receiving the right data to update. Thank you in advance
This discussion has been closed.
Answers
e.g
tableAPI.rows().eq(0).filter(function (index)
{
if (tableAPI.row(index).data().UID == UIDMatch)
{
var d = tableAPI.row(index).data();
tableAPI.row(index).data(d).draw();
}
});
tableAPI.rows().eq(0).filter(function (index)
{
if (tableAPI.row(index).data().UID == UIDMatch)
{
var d = tableAPI.row(index).data();
tableAPI.row(index).data(d).draw();
}
});