Callback method for after row is rendered into the document
Callback method for after row is rendered into the document
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
drawCallbackordrawand 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
rowCallbackthough - 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.