I have a page containing a DataTable with filtering, plus a drop-down menu.
The data is provided via an ajax request. Following data reception (fnServerData
& fnCallback) I do some post-processing, incl setting cell classes to 'editable'
for use with jeditable:
Now my problem arises when the user has entered a filter string, an update
is requested, and the user then removed the filter string. The previously hidden
rows appear as they should, but without the 'editable' classes.
So the jQuery line above doesn't include filtered out elements. Is there a
DataTables func that can loop through / update (apply a class) to all rows
incl filtered ones?