赤/緑の「ステータス」に基づいて行に色を付けようとしています。dynatable を使用して、JSON データに基づいてテーブル行を生成します。
問題は、dynatable から次のコードを呼び出すたびに、常に dyntable.process(); によって上書きされることです。
$('#mytable tr td').each(function() {
if ($(this).text() == 'Red') {
$(this).closest('tr').css('background-color', '#f00');
}
});
私の index.php: http://pastie.org/10389654
私の index.js: http://pastie.org/10389656