How to capture cell data of all autofilled rows?
How to capture cell data of all autofilled rows?
thegamechangerpro
Posts: 81Questions: 30Answers: 1
How do I capture cell data from a specific column (a UUID column) when a row has been modified via autofill?
Answers
Use the
autoFill
event to get all of the updated cells. Loop through the array and usecell().index()
to get therow
index. This can be used to get the Datatables row. Here is a simple example:https://live.datatables.net/zuqeduwe/1/edit
Kevin