How to call fnCreatedCell Manually?

How to call fnCreatedCell Manually?

chrislochrislo Posts: 7Questions: 4Answers: 0
edited July 2016 in Free community support

I read in the forums: but how do i call fnCreatedCell manually when i have updated table?
table.row( 0 )
.data( d )
.draw();

Chris

Isn't fnCreatedRow, fnCreatedCell supposed to be called when fnUpdate is called?

No because the row / cell isn't created - it already exists, you are just putting different content into it.

To be honest I haven't yet resolved how exactly to deal with this situation. Possibly a flag passed to the update method which will tell it to run the created functions or not. At the moment, you need to call the methods manually.

This discussion has been closed.