Lines 71-84
$(document).ready(function() {
Link Here
|
71 |
$("#hide_inactive").click(function(e){ |
71 |
$("#hide_inactive").click(function(e){ |
72 |
e.preventDefault(); |
72 |
e.preventDefault(); |
73 |
oTable.fnFilter( 1, 0 ); // Show only active=1 |
73 |
oTable.fnFilter( 1, 0 ); // Show only active=1 |
74 |
inactive.hide(); |
|
|
75 |
active.show(); |
76 |
}); |
74 |
}); |
77 |
$("#show_inactive").click(function(e){ |
75 |
$("#show_inactive").click(function(e){ |
78 |
e.preventDefault(); |
76 |
e.preventDefault(); |
79 |
oTable.fnFilter( '', 0 ); |
77 |
oTable.fnFilter( '', 0 ); |
80 |
inactive.show(); |
|
|
81 |
active.hide(); |
82 |
}); |
78 |
}); |
83 |
$("#hide_inactive").click(); |
79 |
$("#hide_inactive").click(); |
84 |
|
80 |
|
85 |
- |
|
|