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