How to display row starting from index number 1?
How to display row starting from index number 1?
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
filterDataoption of jQuery's ajax to remove the0row from the data that DataTables sees - assuming you are usingajaxto load the data.Allan