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 2995-2997 fieldset.rows + fieldset.action { Link Here
2995
.yui-u .rows li p label.widelabel {
2995
.yui-u .rows li p label.widelabel {
2996
    width: auto;
2996
    width: auto;
2997
}
2997
}
2998
2999
#pat_member #patron_list_dialog,
3000
#pat_member #searchresults,
3001
#patron_search #filters {
3002
    display: none;
3003
}
(-)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 324-330 function filterByFirstLetterSurname(letter) { Link Here
324
      <div class="yui-b">
324
      <div class="yui-b">
325
        <div class="yui-g">
325
        <div class="yui-g">
326
          [% IF CAN_user_tools_manage_patron_lists %]
326
          [% IF CAN_user_tools_manage_patron_lists %]
327
            <div id="patron_list_dialog" class="dialog alert" style="display:none">
327
            <div id="patron_list_dialog" class="dialog alert">
328
              Added <span class="patrons-length"></span> patrons to <a></a>.
328
              Added <span class="patrons-length"></span> patrons to <a></a>.
329
            </div>
329
            </div>
330
          [% END %]
330
          [% END %]
Lines 351-357 function filterByFirstLetterSurname(letter) { Link Here
351
            </div>
351
            </div>
352
          [% END %]
352
          [% END %]
353
353
354
          <div id="searchresults" style="display:none">
354
          <div id="searchresults">
355
            <div id="searchheader">
355
            <div id="searchheader">
356
              <h3>Patrons found for: <span id="searchpattern">[% IF searchmember %] for '[% searchmember %]'[% END %]</span></h3>
356
              <h3>Patrons found for: <span id="searchpattern">[% IF searchmember %] for '[% searchmember %]'[% END %]</span></h3>
357
            </div>
357
            </div>
358
- 

Return to bug 18551