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 3001-3003 fieldset.rows + fieldset.action { Link Here
3001
.yui-u .rows li p label.widelabel {
3001
.yui-u .rows li p label.widelabel {
3002
    width: auto;
3002
    width: auto;
3003
}
3003
}
3004
3005
#pat_member #patron_list_dialog,
3006
#pat_member #searchresults,
3007
#patron_search #filters {
3008
    display: none;
3009
}
(-)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 328-334 function filterByFirstLetterSurname(letter) { Link Here
328
      <div class="yui-b">
328
      <div class="yui-b">
329
        <div class="yui-g">
329
        <div class="yui-g">
330
          [% IF CAN_user_tools_manage_patron_lists %]
330
          [% IF CAN_user_tools_manage_patron_lists %]
331
            <div id="patron_list_dialog" class="dialog alert" style="display:none">
331
            <div id="patron_list_dialog" class="dialog alert">
332
              Added <span class="patrons-length"></span> patrons to <a></a>.
332
              Added <span class="patrons-length"></span> patrons to <a></a>.
333
            </div>
333
            </div>
334
          [% END %]
334
          [% END %]
Lines 355-361 function filterByFirstLetterSurname(letter) { Link Here
355
            </div>
355
            </div>
356
          [% END %]
356
          [% END %]
357
357
358
          <div id="searchresults" style="display:none">
358
          <div id="searchresults">
359
            <div id="searchheader">
359
            <div id="searchheader">
360
              <h3>Patrons found for: <span id="searchpattern">[% IF searchmember %] for '[% searchmember %]'[% END %]</span></h3>
360
              <h3>Patrons found for: <span id="searchpattern">[% IF searchmember %] for '[% searchmember %]'[% END %]</span></h3>
361
            </div>
361
            </div>
362
- 

Return to bug 18551