2014-08-29 91 views
0

我希望有人可以幫助我解決這個問題。 我正在使用舊版本的datatables.net查看遺留應用程序 它使用該函數來填充數據表並根據返回的名稱向該行添加顏色。下面的代碼工作。jQuery datatable - 更改單元格值

$(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玩具」和DollarValue = 0然後改變DollarValue顯示爲空字符串(即,沒有在單元格中顯示的值)。

我已經看過使用fnUpdate,但我無法讓它讀取正確的行和列。它回來了「未定義」。

任何建議,非常感謝。 謝謝!

回答

相關問題