datatable going into alphabetical order when you start to search (jQuery code) tried to find bsort
datatable going into alphabetical order when you start to search (jQuery code) tried to find bsort
PaulFreeWebs
Posts: 63Questions: 4Answers: 1
my friend is using datatables
THE ISSUE:
I want disable sorting so it organizes by OUR sorting, I also want to default the records to 150, and not let it be changed. I edited the js and it "broke" the sorting, but when you searched something then removed the search, sorting would come back, so I need an efficient way to do this.
pastebin below as this code is to long
http://pastebin.com/CknGPGkX
THE ISSUE:
I want disable sorting so it organizes by OUR sorting, I also want to default the records to 150, and not let it be changed. I edited the js and it "broke" the sorting, but when you searched something then removed the search, sorting would come back, so I need an efficient way to do this.
pastebin below as this code is to long
http://pastebin.com/CknGPGkX
This discussion has been closed.
Replies
[code]
bLengthChange: false,
iDisplayLength: 150,
bSort: false
[/code]
Does that not work?
Allan