当单元格包含反转的逗号时,导出到excel不在jquery数据表中工作

时间:2015-08-04 06:39:09

标签: javascript jquery datatables tabletools datatables-1.10

我正在使用jquery数据表,其中有一个导出到excel的选项,我正在使用jquery数据表工具。我的表单元格包含反转的逗号,这会导致导出问题。如何解决此问题我试图使用 fnCellRender

来操纵数据
        "fnCellRender": function ( sValue, iColumn, nTr, iDataIndex ) {
               if ( iColumn === 10) {  
    //here i want to check if string contains the inverted comma ,  
//if present then how can i escape them so that they appear in excel too.
                    return sValue;
               }

0 个答案:

没有答案