jQuery数据表 - 更改单元格值

时间:2014-08-29 21:48:03

标签: javascript jquery datatables jquery-datatables

我希望有人可以帮我解决这个问题。 我正在查看旧版本的datatables.net的遗留应用程序 它使用该函数填充数据表,并根据返回的名称为行添加颜色。 以下代码有效。

$(function () {

$("#ProfileTable").dataTable({
    "bProcessing": true,
    "bServerSide": true,
    "bFilter": false, //Hide the search box
    "bInfo": false,
    "bPaginate": false,
    "bLengthChange": false,
    "sAjaxSource": 'DataTableHandler.ashx?dataTableId=ProfileTable',
    "aoColumns": [  //aoColumns defines the properties of the table columns
                    {
                        "mDataProp": "Name",
                        "fnRender": function (o) {
                            return SetToolTip(o);
                        }
                    },
                    {
                        "mDataProp": "DollarValue",
                        "fnRender": function (o) {
                            return accounting.formatMoney(dollarValue);
                        }
                        ,
                        "bUseRendered": false,
                        "sClass": "dataTableTextAlignRight"
                    }
    ],
    "fnRowCallback": function (nRow, aData, iDisplayIndex, iDisplayIndexFull) {

        //Highlight the row colors based on the Name.  It must be identical to what is being retrieved from the database
        var columnData = aData["Name"];
        var div = document.createElement("div");
        div.innerHTML = columnData;

        if (div.innerText == "TOYS" {
            $('td', nRow).css('background-color', '#E0E0E0');
        }

        if (div.innerText == "LOST TOYS" ) {
            $('td', nRow).css('background-color', '#BDBDBD');
        }
    }
 } 

我遇到的问题是:如果Name =“LOST TOYS”和DollarValue = 0,则更改DollarValue以显示为空字符串(即单元格中没有显示任何值)。

我已经看过使用fnUpdate,但我无法读取正确的行和列。它带有“未定义”。

非常感谢任何建议。 谢谢!

1 个答案:

答案 0 :(得分:0)

我有一个大脑放屁。 代码进入服务器端以获取数据。

以下是信息的链接:Datatables forum posting about server side source