I added to my project the jquery.dataTables.min.js (1.10.3 version) (called js1 for convenience) to use DataTable().rows().nodes()
function (and others) and its works fine.
Now, I'm trying to implement a nested table with Datatable plugin, here the jsfiddle (in the same page of my project).
As you can see in the fiddle is used:
http://ajax.aspnetcdn.com/ajax/jquery.dataTables/1.9.0/jquery.dataTables.min.js (called js2 for convenience)
that is different from js1.
This two different plugin serve both. Because without js1 I get this error:
Using $(...).DataTable(...).rows is not a function
or $(...).dataTable(...).rows is not a function
I always get the same error.
Without js2 nested table in the jsfiddle does not work.
So, I added both two plugins to my page. But I get the error (.row is not ...) yet.
See the new jsfiddle with the error.