Callback method for after row is rendered into the document
Callback method for after row is rendered into the document
stephenliu1944
Posts: 2Questions: 1Answers: 0
How could I get a callback method like "rowCallback" but after row is rendered into the document? The drawCallback method can't be used, I want to get the argument of new row.
This discussion has been closed.
Answers
You would need to use
drawCallback
ordraw
and then loop over the rows in the table. There is no individual row callback at that point.I'm not clear on why you can't use
rowCallback
though - what do you mean you want to get the argument of the new row?Allan
Thank you very much Allan, I used a plugin to bind to the cell of row, but it needed the cell was rendered into the document.