Callback method for after row is rendered into the document

Callback method for after row is rendered into the document

stephenliu1944stephenliu1944 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.

Answers

  • allanallan Posts: 62,312Questions: 1Answers: 10,225 Site admin

    You would need to use drawCallback or draw 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

  • stephenliu1944stephenliu1944 Posts: 2Questions: 1Answers: 0

    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.

This discussion has been closed.