View | Details | Raw Unified | Return to bug 19972
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt (-3 / +2 lines)
Lines 149-155 Link Here
149
        <td><input type="text" class="filter" data-column_num="6" placeholder="Call number" style="width:95%"/></td>
149
        <td><input type="text" class="filter" data-column_num="6" placeholder="Call number" style="width:95%"/></td>
150
        <td><input type="text" class="filter" data-column_num="7" placeholder="Available copy" style="width:95%"/></td>
150
        <td><input type="text" class="filter" data-column_num="7" placeholder="Available copy" style="width:95%"/></td>
151
        <td><input type="text" class="filter" data-column_num="8" placeholder="Available enumeration" style="width:95%"/></td>
151
        <td><input type="text" class="filter" data-column_num="8" placeholder="Available enumeration" style="width:95%"/></td>
152
        <td id="type-filter"></td>
152
        <td id="itemtype-filter"></td>
153
        <td id="locationfilter"></td>
153
        <td id="locationfilter"></td>
154
        <td></td>
154
        <td></td>
155
        <td></td>
155
        <td></td>
Lines 245-251 Link Here
245
                  holdst.fnFilter( filter_value, 5, true );
245
                  holdst.fnFilter( filter_value, 5, true );
246
              });
246
              });
247
          });
247
          });
248
          $("#type-filter").each( function () {
248
          $("#itemtype-filter").each( function () {
249
              $(this).html( createSelect( holdst.fnGetColumnData(9) ) );
249
              $(this).html( createSelect( holdst.fnGetColumnData(9) ) );
250
              $('select', this).change( function () {
250
              $('select', this).change( function () {
251
                  holdst.fnFilter( $(this).val(), 9 );
251
                  holdst.fnFilter( $(this).val(), 9 );
252
- 

Return to bug 19972