Currency AutoDetect not working
Currency AutoDetect not working
I am trying to use the currency sorting along with the currency autoDetection and it doesn't work. I can force the currency sorting correctly on a given column, but when trying to auto-detect (which is critical for my use) it fails. I have the code all being loaded in the correct order, but always get the following error:
[code] Uncaught TypeError: Object # has no method '_fnEscapeRegex' [/code]
Here is the code that loads and processes my table:
[code]
$(function(){
//Init dataTable
$('#table1').dataTable({
"iDisplayLength": 500,
"sDom": '<"top"iflp<"clear">>rt<"bottom"iflp<"clear">>',
"aLengthMenu": [[20, 50, 100, 200, 500, -1], [20, 50, 100, 200, 500, "All"]],
"aaSorting": []
});
});
[/code]
There was a similar problem in another thread, but it was already closed and didn't help my particular problem anyway.
Any help?
[code] Uncaught TypeError: Object # has no method '_fnEscapeRegex' [/code]
Here is the code that loads and processes my table:
[code]
$(function(){
//Init dataTable
$('#table1').dataTable({
"iDisplayLength": 500,
"sDom": '<"top"iflp<"clear">>rt<"bottom"iflp<"clear">>',
"aLengthMenu": [[20, 50, 100, 200, 500, -1], [20, 50, 100, 200, 500, "All"]],
"aaSorting": []
});
});
[/code]
There was a similar problem in another thread, but it was already closed and didn't help my particular problem anyway.
Any help?
This discussion has been closed.
Replies
Thanks,
Allan