|
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); |
| 280 |
- |
|
|