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

(-)a/koha-tmpl/intranet-tmpl/prog/en/js/row-columns-require.js (-1 / +13 lines)
Line 0 Link Here
0
- 
1
$(document).ready(function() {
2
    $("#configure_report").validate({
3
        errorPlacement: function(error, element) {
4
            if (element.attr("name") == "Line") {
5
                $("#LineError").html( error );
6
            } else if (element.attr("name") == "Column") {
7
                $("#ColumnError").html( error );
8
            } else {
9
                error.insertAfter(element);
10
            }
11
        }
12
    });
13
});

Return to bug 3311