How to display row starting from index number 1?
How to display row starting from index number 1?
mending3
Posts: 16Questions: 9Answers: 0
hey guys, i have json data as listed below:
0 44
1 asdasdas
2 dasdasdasd
now, i want to hide the index[0], thus on my table front-end it's showing asdasdas which is the number 1.
Is there a way to do this?
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
You could use the
filterData
option of jQuery's ajax to remove the0
row from the data that DataTables sees - assuming you are usingajax
to load the data.Allan