fire rowCalback in runtime
fire rowCalback in runtime
pmengo
Posts: 74Questions: 37Answers: 2
How can i fire a callback programatically, in this case rowCallback.
I try tbl._fnCallbackFire('rowCallback') wth no results.
Thanks
This discussion has been closed.
Answers
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 haverowCallback
itself be called is to draw the table.Allan
but i use serverSide processing....
and the draw repeate the request to the server...
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
ok