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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes-upload.tt (+3 lines)
Lines 148-153 Link Here
148
            // then default to comma.
148
            // then default to comma.
149
            strDelimiter = (strDelimiter || ",");
149
            strDelimiter = (strDelimiter || ",");
150
150
151
            strData = escape_str(strData);
152
151
            // Create a regular expression to parse the CSV values.
153
            // Create a regular expression to parse the CSV values.
152
            var objPattern = new RegExp(
154
            var objPattern = new RegExp(
153
            (
155
            (
Lines 274-279 Link Here
274
               "fnDrawCallback": function(oSettings) {
276
               "fnDrawCallback": function(oSettings) {
275
                    /* Apply the jEditable handlers to the table on all fields w/o the no_edit id */
277
                    /* Apply the jEditable handlers to the table on all fields w/o the no_edit id */
276
                    $('#quotes_editor tbody td[id!="no_edit"]').editable( function(value, settings) {
278
                    $('#quotes_editor tbody td[id!="no_edit"]').editable( function(value, settings) {
279
                            value = escape_str(value);
277
                            var cellPosition = oTable.fnGetPosition( this );
280
                            var cellPosition = oTable.fnGetPosition( this );
278
                            oTable.fnUpdate(value, cellPosition[0], cellPosition[1], false, false);
281
                            oTable.fnUpdate(value, cellPosition[0], cellPosition[1], false, false);
279
                            return(value);
282
                            return(value);
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes.tt (-3 / +12 lines)
Lines 86-93 Link Here
86
                "sAjaxSource"       : "/cgi-bin/koha/tools/quotes/quotes_ajax.pl",
86
                "sAjaxSource"       : "/cgi-bin/koha/tools/quotes/quotes_ajax.pl",
87
                "aoColumns"         : [
87
                "aoColumns"         : [
88
                                        { "sWidth": "3%"  },
88
                                        { "sWidth": "3%"  },
89
                                        { "sWidth": "11%" },
89
                                        {
90
                                        { "sWidth": "75%" },
90
                                            "sWidth": "11%",
91
                                            "render": function(data, type, row, meta){
92
                                                return escape_str(data);
93
                                            }
94
                                        },
95
                                        {
96
                                            "sWidth": "75%",
97
                                            "render": function(data, type, row, meta){
98
                                                return escape_str(data);
99
                                            }
100
                                        },
91
                                        { "sWidth": "11%" },
101
                                        { "sWidth": "11%" },
92
                                      ],
102
                                      ],
93
               "oLanguage"          : {
103
               "oLanguage"          : {
94
- 

Return to bug 27942