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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authtypes.tt (-1 / +4 lines)
Lines 18-23 Link Here
18
            ],
18
            ],
19
            "sPaginationType": "four_button"
19
            "sPaginationType": "four_button"
20
        }));
20
        }));
21
        $("#authtypecode").on("blur",function(){
22
            toUC(this);
23
        });
21
    });
24
    });
22
//]]>
25
//]]>
23
</script>
26
</script>
Lines 85-91 Link Here
85
                            <input type="hidden" name="authtypecode" value="[% authority_type.authtypecode %]" />[% authority_type.authtypecode %]
88
                            <input type="hidden" name="authtypecode" value="[% authority_type.authtypecode %]" />[% authority_type.authtypecode %]
86
                    [% ELSE %]
89
                    [% ELSE %]
87
                            <label for="authtypecode" class="required">Authority type: </label>
90
                            <label for="authtypecode" class="required">Authority type: </label>
88
                            <input id="authtypecode" type="text" class="required" required="required" name="authtypecode" size="10" maxlength="10" onblur="toUC(this)" />
91
                            <input id="authtypecode" type="text" class="required" required="required" name="authtypecode" size="10" maxlength="10" />
89
                            <span class="required">Required</span>
92
                            <span class="required">Required</span>
90
                    [% END %]
93
                    [% END %]
91
                </li>
94
                </li>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/biblio_framework.tt (-1 / +1 lines)
Lines 86-92 Link Here
86
                [% ELSE %]
86
                [% ELSE %]
87
                    <li>
87
                    <li>
88
                        <label for="frameworkcode" class="required">Framework code: </label>
88
                        <label for="frameworkcode" class="required">Framework code: </label>
89
                        <input type="text" id="frameworkcode" name="frameworkcode" size="4" maxlength="4" onblur="toUC(this)" required="required" class="required" />
89
                        <input type="text" id="frameworkcode" name="frameworkcode" size="4" maxlength="4" required="required" class="required" />
90
                        <span class="required">Required</span>
90
                        <span class="required">Required</span>
91
                    </li>
91
                    </li>
92
                [% END %]
92
                [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tt (-1 / +4 lines)
Lines 38-43 Link Here
38
            check_currency( $(this).val() );
38
            check_currency( $(this).val() );
39
        });
39
        });
40
        check_currency( $("#rate").val() );
40
        check_currency( $("#rate").val() );
41
        $("#currency_code").on("blur",function(){
42
            toUC(this);
43
        });
41
    });
44
    });
42
//]]>
45
//]]>
43
</script>
46
</script>
Lines 108-114 Link Here
108
                    <input type="hidden" name="currency_code" id="currency" value="[% currency.currency %]" />[% currency.currency %]
111
                    <input type="hidden" name="currency_code" id="currency" value="[% currency.currency %]" />[% currency.currency %]
109
                [% ELSE %]
112
                [% ELSE %]
110
                    <label for="currency_code" class="required">Currency: </label>
113
                    <label for="currency_code" class="required">Currency: </label>
111
                    <input type="text" name="currency_code" id="currency_code" size="50" maxlength="50" onblur="toUC(this);" required="required" class="required" /> <span class="required">Required</span>
114
                    <input type="text" name="currency_code" id="currency_code" size="50" maxlength="50" required="required" class="required" /> <span class="required">Required</span>
112
                [% END %]
115
                [% END %]
113
            </li>
116
            </li>
114
            <li>
117
            <li>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt (-1 / +4 lines)
Lines 43-48 Data deleted Link Here
43
                rentalcharge: { number: true }
43
                rentalcharge: { number: true }
44
            }
44
            }
45
        });
45
        });
46
        $("#itemtype").on("blur",function(){
47
            toUC(this);
48
        });
46
     });
49
     });
47
//]]>
50
//]]>
48
</script>
51
</script>
Lines 134-140 Item types administration Link Here
134
                [% ELSE %]
137
                [% ELSE %]
135
                    <li>
138
                    <li>
136
                        <label for="itemtype" class="required">Item type: </label>
139
                        <label for="itemtype" class="required">Item type: </label>
137
                        <input type="text" id="itemtype" name="itemtype" size="10" maxlength="10" onblur="toUC(this)" required="required" /> <span class="required">Required</span>
140
                        <input type="text" id="itemtype" name="itemtype" size="10" maxlength="10" required="required" /> <span class="required">Required</span>
138
                    </li>
141
                    </li>
139
                [% END %]
142
                [% END %]
140
                <li>
143
                <li>
(-)a/koha-tmpl/intranet-tmpl/prog/js/biblio_framework.js (-2 / +4 lines)
Lines 73-76 Link Here
73
            obj.css("background-color","white");
73
            obj.css("background-color","white");
74
            return false;
74
            return false;
75
        });
75
        });
76
    });
76
        $("#frameworkcode").on("blur",function(){
77
            toUC(this);
78
        });
79
    });
77
- 

Return to bug 17011