You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the above code upon initialisation the draw event fires but (new $.fn.dataTable.Api(settings)).column(1, {page:'current'}).data() returns undefined while $(this).DataTable().column(1, {page:'current'}).data() returns expected data.
Is this expected?
Presumably something has not properly initialised yet in the settings
The text was updated successfully, but these errors were encountered:
Nope I wouldn't have expected that. As you say, it sounds like the settings object isn't fully initialised or perhaps it isn't in the array of objects (although I thought that was one of the first things to happen).
In the above code upon initialisation the draw event fires but
(new $.fn.dataTable.Api(settings)).column(1, {page:'current'}).data()
returnsundefined
while$(this).DataTable().column(1, {page:'current'}).data()
returns expected data.Is this expected?
Presumably something has not properly initialised yet in the
settings
The text was updated successfully, but these errors were encountered: