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

(-)a/koha-tmpl/intranet-tmpl/prog/css/staff-global.css (+6 lines)
Lines 2808-2810 div[class$="_table_controls"] { Link Here
2808
#borrower_message {
2808
#borrower_message {
2809
    margin-top: 10px;
2809
    margin-top: 10px;
2810
}
2810
}
2811
2812
#pat_member #patron_list_dialog,
2813
#pat_member #searchresults,
2814
#patron_search #filters {
2815
    display: none;
2816
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/patron-search.inc (-3 / +6 lines)
Lines 162-170 $(document).ready(function() { Link Here
162
        $('#filters').toggle();
162
        $('#filters').toggle();
163
        $('.filteraction').toggle();
163
        $('.filteraction').toggle();
164
    });
164
    });
165
    [% IF ( advsearch ) %]$("#filteraction_on").toggle();
165
    [% IF ( advsearch ) %]
166
    [% ELSE %]$("#filters").toggle();
166
        $("#filteraction_on").toggle();
167
    $("#filteraction_off").toggle();[% END %]
167
        $("#filters").show();
168
    [% ELSE %]
169
        $("#filteraction_off").toggle();
170
    [% END %]
168
    [% SET dateformat = Koha.Preference('dateformat') %]
171
    [% SET dateformat = Koha.Preference('dateformat') %]
169
    $("#searchfieldstype").change(function() {
172
    $("#searchfieldstype").change(function() {
170
      if ( $(this).val() == 'dateofbirth' ) {
173
      if ( $(this).val() == 'dateofbirth' ) {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/member.tt (-3 / +2 lines)
Lines 327-333 function filterByFirstLetterSurname(letter) { Link Here
327
      <div class="yui-b">
327
      <div class="yui-b">
328
        <div class="yui-g">
328
        <div class="yui-g">
329
          [% IF CAN_user_tools_manage_patron_lists %]
329
          [% IF CAN_user_tools_manage_patron_lists %]
330
            <div id="patron_list_dialog" class="dialog alert" style="display:none">
330
            <div id="patron_list_dialog" class="dialog alert">
331
              Added <span class="patrons-length"></span> patrons to <a></a>.
331
              Added <span class="patrons-length"></span> patrons to <a></a>.
332
            </div>
332
            </div>
333
          [% END %]
333
          [% END %]
Lines 354-360 function filterByFirstLetterSurname(letter) { Link Here
354
            </div>
354
            </div>
355
          [% END %]
355
          [% END %]
356
356
357
          <div id="searchresults" style="display:none">
357
          <div id="searchresults">
358
            <div id="searchheader">
358
            <div id="searchheader">
359
              <h3>Patrons found for: <span id="searchpattern">[% IF searchmember %] for '[% searchmember %]'[% END %]</span></h3>
359
              <h3>Patrons found for: <span id="searchpattern">[% IF searchmember %] for '[% searchmember %]'[% END %]</span></h3>
360
            </div>
360
            </div>
361
- 

Return to bug 18551