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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/_forms.scss (-3 / +12 lines)
Lines 176-191 fieldset { Link Here
176
            div.ms-drop {
176
            div.ms-drop {
177
                label {
177
                label {
178
                    text-align: left;
178
                    text-align: left;
179
                    width:auto;
179
                    width: auto;
180
                    span{
180
181
                    span {
181
                        margin-left:5px;
182
                        margin-left:5px;
182
                        width:auto;
183
                        width:auto;
183
                    }
184
                    }
184
                }
185
                }
185
186
186
                ul>li.hide-radio.selected {
187
                ul>li.hide-radio.selected {
187
                    color: initial;
188
                    background-color: initial;
188
                    background-color: initial;
189
                    color: initial;
190
                }
191
            }
192
193
            .select2 {
194
                li {
195
                    clear: none;
196
                    display: inline-block;
197
                    width: unset;
189
                }
198
                }
190
            }
199
            }
191
        }
200
        }
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authorised_values.tt (-4 / +6 lines)
Lines 196-204 Link Here
196
                            <input type="text" name="lib_opac" id="lib_opac" value="[% av.lib_opac | html %]" maxlength="200" />
196
                            <input type="text" name="lib_opac" id="lib_opac" value="[% av.lib_opac | html %]" maxlength="200" />
197
                        </li>
197
                        </li>
198
                        <li
198
                        <li
199
                            ><label for="branches">Library limitations: </label>
199
                            ><label for="library_limitation">Library limitations: </label>
200
                            <select id="branches" name="branches" multiple size="10">
200
                            <select id="library_limitation" name="branches" multiple size="10">
201
                                <option value="">All libraries</option>
202
                                [% FOREACH branch IN branches_loop %]
201
                                [% FOREACH branch IN branches_loop %]
203
                                    [% IF ( branch.selected ) %]
202
                                    [% IF ( branch.selected ) %]
204
                                        <option selected="selected" value="[% branch.branchcode | html %]">[% branch.branchname | html %]</option>
203
                                        <option selected="selected" value="[% branch.branchcode | html %]">[% branch.branchname | html %]</option>
Lines 207-213 Link Here
207
                                    [% END %]
206
                                    [% END %]
208
                                [% END %]
207
                                [% END %]
209
                            </select>
208
                            </select>
210
                            <div class="hint">Select 'All libraries' if this authorized value must be displayed all the time. Otherwise select libraries you want to associate with this value.</div>
209
                            <div class="hint">Select libraries you want to associate with this value.</div>
211
                        </li>
210
                        </li>
212
                    </ol>
211
                    </ol>
213
212
Lines 403-408 Link Here
403
[% MACRO jsinclude BLOCK %]
402
[% MACRO jsinclude BLOCK %]
404
    [% Asset.js("js/admin-menu.js") | $raw %]
403
    [% Asset.js("js/admin-menu.js") | $raw %]
405
    [% INCLUDE 'datatables.inc' %]
404
    [% INCLUDE 'datatables.inc' %]
405
    [% INCLUDE 'select2.inc' %]
406
    <script>
406
    <script>
407
        $(document).ready(function () {
407
        $(document).ready(function () {
408
            $("#categoriest").kohaTable({
408
            $("#categoriest").kohaTable({
Lines 439-444 Link Here
439
                }
439
                }
440
                return true;
440
                return true;
441
            });
441
            });
442
            $("#library_limitation")[0].style.minWidth = "450px";
443
            $("#library_limitation").select2();
442
        });
444
        });
443
    </script>
445
    </script>
444
[% END %]
446
[% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categories.tt (-4 / +4 lines)
Lines 234-245 Link Here
234
                        </select>
234
                        </select>
235
                    </li>
235
                    </li>
236
                    <li
236
                    <li
237
                        ><label for="branches">Library limitations: </label>
237
                        ><label for="library_limitation">Library limitations: </label>
238
                        <select id="branches" name="branches" multiple size="10">
238
                        <select id="library_limitation" name="branches" multiple size="10">
239
                            <option value="">All libraries</option>
240
                            [% PROCESS options_for_libraries libraries => Branches.all( selected => category.get_library_limits, unfiltered => 1, do_not_select_my_library => 1 ) %]
239
                            [% PROCESS options_for_libraries libraries => Branches.all( selected => category.get_library_limits, unfiltered => 1, do_not_select_my_library => 1 ) %]
241
                        </select>
240
                        </select>
242
                        <div class="hint">Select <em>All libraries</em> if this category type must to be displayed all the time. Otherwise select libraries you want to associate with this value. </div>
241
                        <div class="hint">Select libraries you want to associate with this value.</div>
243
                    </li>
242
                    </li>
244
                    <li>
243
                    <li>
245
                        <label for="reset_password">Password reset in OPAC: </label>
244
                        <label for="reset_password">Password reset in OPAC: </label>
Lines 867-872 Link Here
867
    [% Asset.js("lib/jquery/plugins/multiple-select/multiple-select.min.js") | $raw %]
866
    [% Asset.js("lib/jquery/plugins/multiple-select/multiple-select.min.js") | $raw %]
868
    [% INCLUDE 'calendar.inc' %]
867
    [% INCLUDE 'calendar.inc' %]
869
    [% INCLUDE 'datatables.inc' %]
868
    [% INCLUDE 'datatables.inc' %]
869
    [% INCLUDE 'select2.inc' %]
870
    <script>
870
    <script>
871
        var table_settings = [% TablesSettings.GetTableSettings( 'admin', 'categories', 'patron_categories', 'json' ) | $raw %];
871
        var table_settings = [% TablesSettings.GetTableSettings( 'admin', 'categories', 'patron_categories', 'json' ) | $raw %];
872
    </script>
872
    </script>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt (-4 / +6 lines)
Lines 345-356 Link Here
345
                        </select>
345
                        </select>
346
                    </li>
346
                    </li>
347
                    <li
347
                    <li
348
                        ><label for="branches">Library limitation: </label>
348
                        ><label for="library_limitation">Library limitation: </label>
349
                        <select id="branches" name="branches" multiple size="10">
349
                        <select id="library_limitation" name="branches" multiple size="10">
350
                            <option value="">All libraries</option>
351
                            [% PROCESS options_for_libraries libraries => Branches.all( selected => itemtype.get_library_limits, unfiltered => 1, do_not_select_my_library => 1 ) %]
350
                            [% PROCESS options_for_libraries libraries => Branches.all( selected => itemtype.get_library_limits, unfiltered => 1, do_not_select_my_library => 1 ) %]
352
                        </select>
351
                        </select>
353
                        <div class="hint">Select 'All libraries' if all libraries use this item type. Otherwise, select the specific libraries that use this item type.</div>
352
                        <div class="hint">Select libraries you want to associate with this item type.</div>
354
                    </li>
353
                    </li>
355
                    <li>
354
                    <li>
356
                        <label for="summary">Summary: </label>
355
                        <label for="summary">Summary: </label>
Lines 535-540 Link Here
535
    [% Asset.js("js/admin-menu.js") | $raw %]
534
    [% Asset.js("js/admin-menu.js") | $raw %]
536
    [% INCLUDE 'greybox.inc' %]
535
    [% INCLUDE 'greybox.inc' %]
537
    [% INCLUDE 'datatables.inc' %]
536
    [% INCLUDE 'datatables.inc' %]
537
    [% INCLUDE 'select2.inc' %]
538
    <script>
538
    <script>
539
        $(document).ready(function() {
539
        $(document).ready(function() {
540
           var table_settings = [% TablesSettings.GetTableSettings( 'admin', 'itemtypes', 'table_item_type', 'json' ) | $raw %];
540
           var table_settings = [% TablesSettings.GetTableSettings( 'admin', 'itemtypes', 'table_item_type', 'json' ) | $raw %];
Lines 567-572 Link Here
567
           if( $("#icons .tab-pane.active").length < 1 ){
567
           if( $("#icons .tab-pane.active").length < 1 ){
568
               $("#icons a:first").tab("show");
568
               $("#icons a:first").tab("show");
569
           }
569
           }
570
            $("#library_limitation")[0].style.minWidth = '450px';
571
            $("#library_limitation").select2();
570
        });
572
        });
571
    </script>
573
    </script>
572
[% END %]
574
[% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/js/categories.js (-4 / +2 lines)
Lines 53-61 $(document).ready(function () { Link Here
53
        table_settings
53
        table_settings
54
    );
54
    );
55
55
56
    if ($("#branches option:selected").length < 1) {
56
    $("#library_limitation")[0].style.minWidth = "450px";
57
        $("#branches option:first").attr("selected", "selected");
57
    $("#library_limitation").select2();
58
    }
59
58
60
    $("#categorycode").on("blur", function () {
59
    $("#categorycode").on("blur", function () {
61
        toUC(this);
60
        toUC(this);
62
- 

Return to bug 39099