Does render run four times per column for each type?
Does render run four times per column for each type?
guillochon
Posts: 56Questions: 19Answers: 0
If I've defined a render
function, does it run once each for display
, filter
, sort
, and type
? If so, is there a way to avoid the repetitive computations?
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Yes it does. It will run whenever DataTables needs to get rendered data of any type. As such the rendering functions should be made as fast as possible.
Allan