Can be a bug?
Can be a bug?
dacas999
Posts: 3Questions: 1Answers: 0
Hello, when I do this:
http://www.datatables.net/examples/api/multi_filter_select.html
with these attributes:
var table = $('#example').DataTable({
"sScrollY": "500px",
"bScrollCollapse": false
});
the behaviour of datatable is erratic, maybe a bug? or is my fault? I attach a zip with full code.
https://mega.co.nz/#!zh1gxCyL!jkT-rHSKku9b_4Up1FEiUOhxWCzanseff1Z0D1140ZM
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
I get this error in my javascript console: Uncaught TypeError: Cannot read property 'fnGetData' of undefined
See the second top FAQ.
You are trying to use the old API (
fn*
) but getting the new API instance ($().DataTable()
).You need to be consistent - I would suggest using the new API only.
data()
is the method to get the data from the table.Allan
Thank you, I can fix it!