Lines 556-563
jQuery.fn.dataTable.ext.errMode = function(settings, note, message) {
Link Here
|
556 |
_per_page: length |
556 |
_per_page: length |
557 |
}; |
557 |
}; |
558 |
|
558 |
|
559 |
|
|
|
560 |
function build_query(col, value){ |
559 |
function build_query(col, value){ |
|
|
560 |
|
561 |
// escape SQL special characters |
562 |
value = value.replace(/(\%|\_|\\)/g, "\\$1" ); |
563 |
|
561 |
var parts = []; |
564 |
var parts = []; |
562 |
var attributes = col.data.split(':'); |
565 |
var attributes = col.data.split(':'); |
563 |
for (var i=0;i<attributes.length;i++){ |
566 |
for (var i=0;i<attributes.length;i++){ |
564 |
- |
|
|