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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt (-9 / +8 lines)
Lines 205-218 Link Here
205
        <td><input type="text" class="filter" data-column_num="3" placeholder="Patron name" style="width:95%"/></td>
205
        <td><input type="text" class="filter" data-column_num="3" placeholder="Patron name" style="width:95%"/></td>
206
        <td><input type="text" class="filter" data-column_num="4" placeholder="Title" style="width:95%"/></td>
206
        <td><input type="text" class="filter" data-column_num="4" placeholder="Title" style="width:95%"/></td>
207
        <td id="homebranchfilter"></td>
207
        <td id="homebranchfilter"></td>
208
        <td><input type="text" class="filter" data-column_num="6" placeholder="Call number" style="width:95%"/></td>
208
        <td></td>
209
        <td><input type="text" class="filter" data-column_num="7" placeholder="Available copy" style="width:95%"/></td>
209
        <td><input type="text" class="filter" data-column_num="7" placeholder="Call number" style="width:95%"/></td>
210
        <td><input type="text" class="filter" data-column_num="8" placeholder="Available enumeration" style="width:95%"/></td>
210
        <td><input type="text" class="filter" data-column_num="8" placeholder="Available copy" style="width:95%"/></td>
211
        <td><input type="text" class="filter" data-column_num="9" placeholder="Available enumeration" style="width:95%"/></td>
211
        <td id="itemtype-filter"></td>
212
        <td id="itemtype-filter"></td>
212
        <td id="locationfilter"></td>
213
        <td id="locationfilter"></td>
213
        <td></td>
214
        <td></td>
214
        <td></td>
215
        <td></td>
215
        <td></td>
216
        </tr>
216
        </tr>
217
    </tfoot>
217
    </tfoot>
218
    </table>
218
    </table>
Lines 309-323 Link Here
309
              });
309
              });
310
          });
310
          });
311
          $("#itemtype-filter").each( function () {
311
          $("#itemtype-filter").each( function () {
312
              $(this).html( createSelect( holdst.fnGetColumnData(9) ) );
312
              $(this).html( createSelect( holdst.fnGetColumnData(10) ) );
313
              $('select', this).change( function () {
313
              $('select', this).change( function () {
314
                  holdst.fnFilter( $(this).val(), 9 );
314
                  holdst.fnFilter( $(this).val(), 10 );
315
              });
315
              });
316
          });
316
          });
317
          $("#locationfilter").each( function () {
317
          $("#locationfilter").each( function () {
318
              $(this).html( createSelect( holdst.fnGetColumnData(10) ) );
318
              $(this).html( createSelect( holdst.fnGetColumnData(11) ) );
319
              $('select', this).change( function () {
319
              $('select', this).change( function () {
320
                  holdst.fnFilter( $(this).val(), 10 );
320
                  holdst.fnFilter( $(this).val(), 11 );
321
              });
321
              });
322
          });
322
          });
323
        });
323
        });
324
- 

Return to bug 27538