Lines 102-108
Link Here
|
102 |
<td><input type="text" class="filter" data-column_num="6" placeholder="Call number" style="width:95%"/></td> |
102 |
<td><input type="text" class="filter" data-column_num="6" placeholder="Call number" style="width:95%"/></td> |
103 |
<td><input type="text" class="filter" data-column_num="7" placeholder="Available copy" style="width:95%"/></td> |
103 |
<td><input type="text" class="filter" data-column_num="7" placeholder="Available copy" style="width:95%"/></td> |
104 |
<td><input type="text" class="filter" data-column_num="8" placeholder="Available enumeration" style="width:95%"/></td> |
104 |
<td><input type="text" class="filter" data-column_num="8" placeholder="Available enumeration" style="width:95%"/></td> |
105 |
<td id="type-filter"></td> |
105 |
<td id="itemtype-filter"></td> |
106 |
<td id="locationfilter"></td> |
106 |
<td id="locationfilter"></td> |
107 |
<td></td> |
107 |
<td></td> |
108 |
</tr> |
108 |
</tr> |
Lines 197-203
Link Here
|
197 |
holdst.fnFilter( filter_value, 5, true ); |
197 |
holdst.fnFilter( filter_value, 5, true ); |
198 |
}); |
198 |
}); |
199 |
}); |
199 |
}); |
200 |
$("#type-filter").each( function () { |
200 |
$("#itemtype-filter").each( function () { |
201 |
$(this).html( createSelect( holdst.fnGetColumnData(9) ) ); |
201 |
$(this).html( createSelect( holdst.fnGetColumnData(9) ) ); |
202 |
$('select', this).change( function () { |
202 |
$('select', this).change( function () { |
203 |
holdst.fnFilter( $(this).val(), 9 ); |
203 |
holdst.fnFilter( $(this).val(), 9 ); |
204 |
- |
|
|