Can you redraw an existing row without changing its index?

Can you redraw an existing row without changing its index?

nywoozeernywoozeer Posts: 5Questions: 2Answers: 0

My redrawing is messing my index up and hence i am not receiving the right data to update. Thank you in advance

Answers

  • nywoozeernywoozeer Posts: 5Questions: 2Answers: 0

    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();
    }
    });

  • nywoozeernywoozeer Posts: 5Questions: 2Answers: 0

    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();
    }
    });

This discussion has been closed.