fire rowCalback in runtime

fire rowCalback in runtime

pmengopmengo Posts: 74Questions: 37Answers: 2

How can i fire a callback programatically, in this case rowCallback.
I try tbl._fnCallbackFire('rowCallback') wth no results.
Thanks

Answers

  • allanallan Posts: 61,744Questions: 1Answers: 10,111 Site admin

    There is no option to do so. If it is a function that you control then you could just call it directly, i.e. have both rowCallback and your own trigger call the same function, but the only what to have rowCallback itself be called is to draw the table.

    Allan

  • pmengopmengo Posts: 74Questions: 37Answers: 2

    but i use serverSide processing....

  • pmengopmengo Posts: 74Questions: 37Answers: 2

    and the draw repeate the request to the server...

  • allanallan Posts: 61,744Questions: 1Answers: 10,111 Site admin

    Regardless of the processing mode my original statement stands - there is no way externally to trigger a rowCallback. You would need to wrap the function and call it directly.

    Allan

  • pmengopmengo Posts: 74Questions: 37Answers: 2

    ok

This discussion has been closed.