Do you mean that you want numbers down the left hand side (for example) of the table? This could be achieved by making use of fnDrawCallback() ( http://datatables.net/usage#fnDrawCallback ). This function is called every time the table is redrawn, so you could parse through the DOM at that point and update the displayed node numbering. If you want this column to be itself sortable, then you'll need to make use of fnUpdate(), otherwise direct DOM manipulation should do the trick.
Replies
Do you mean that you want numbers down the left hand side (for example) of the table? This could be achieved by making use of fnDrawCallback() ( http://datatables.net/usage#fnDrawCallback ). This function is called every time the table is redrawn, so you could parse through the DOM at that point and update the displayed node numbering. If you want this column to be itself sortable, then you'll need to make use of fnUpdate(), otherwise direct DOM manipulation should do the trick.
Hope this helps,
Allan