After updating data using row.data(newData) for a row, there is no similar callback like createdRow

After updating data using row.data(newData) for a row, there is no similar callback like createdRow

anahaanaha Posts: 1Questions: 1Answers: 0

I know that createdRow callback is called when a new row is inserted into the data table. Is there any way i can have a similar callback when updating the row data of the datatable. I am using angular js ng-click functions as action buttons in the datatable. When a new row is inserted it works fine, but if i update some data of a particular row using row.data(newData) the action buttons are not working as the -
$compile(angular.element(row).contents())($scope);
statement that I have put inside the createdRow callback is not called for update. Is there any other way of achieving this

This discussion has been closed.