Lines 42-48
$(document).ready(function() {
Link Here
|
42 |
$("#homebranchfilter").each( function () { |
42 |
$("#homebranchfilter").each( function () { |
43 |
$(this).html( createSelect( holdst.fnGetColumnData(4) ) ); |
43 |
$(this).html( createSelect( holdst.fnGetColumnData(4) ) ); |
44 |
$('select', this).change( function () { |
44 |
$('select', this).change( function () { |
45 |
holdst.fnFilter( $(this).val(), 4 ); |
45 |
var filter_value = $(this).val(); |
|
|
46 |
if(filter_value){ |
47 |
filter_value = "(^|>)"+filter_value+"($|<)"; |
48 |
} |
49 |
holdst.fnFilter( filter_value, 4, true ); |
46 |
} ); |
50 |
} ); |
47 |
} ); |
51 |
} ); |
48 |
$("#itypefilter").each( function () { |
52 |
$("#itypefilter").each( function () { |
49 |
- |
|
|