2015-11-17 92 views
0

我用​​更改表格行的背景或類

需要

我用這個單細胞

如何在自定義字段值的功能改變類的錶行的一個例子
cellStyle: function(value){ 
        if(value=='0'){ 
         return { classes: 'success' }; 
        }else{ 
         return { classes: 'danger' }; 
        }    
       }, 

我得到這個 enter image description here

但我需要這個 enter image description here

預先感謝

+2

只是看到[rowStyle]樣品(http://bootstrap-table.wenzhixin.net.cn/examples/#style-rowstyle) – Grundy

+0

你能不能給我的JavaScript的例子在字段「Read」的函數中改變rowStyle,基於這個https://github.com/wenzhixin/bootstrap-table/issues/221 for cellStyle –

+0

我不太明白你在這裏的意思:_change rowStyle in the function的字段「Read」_?你可以解釋嗎? – Grundy

回答

2

第一參數在rowStyle功能是用於當前行的數據對象。您可以在Read列中簡單檢查該輸出的屬性並返回所需的類。

function rowStyle(row, index) { 

    if(row.Read = 100){ // possibly you map another property, it depends on your setting. 

     return {classes : "neededClass" } 
    } 
    return {}; 
} 

樣品JS fiddle with test data