1
Editable
プラグインでBootstrap Table
を使用しています。テーブルに新しい行を追加するボタンがあります。私はNotes
列の新しい行のセルに青色の背景色があるのが好きです。 documentationからブートストラップテーブルの新しい行の背景色を設定する
:
function cellStyle(value, row, index, field) {
return {
classes: 'text-nowrap another-class',
css: {"color": "blue", "font-size": "50px"}
};
}
それらのパラメータと一致していると、新しい行を追加すると、インデックス= 0であるので、私はNull
に他のすべてをデフォルト唯一のもの。私の機能が呼び出されていないようです。私はJavaSript
に新しいので、私は何かが欠けているかもしれません。
http://jsfiddle.net/8gk0ogtp/1/
$button = $('#button');
$(function() {
$button.click(function() {
$table.bootstrapTable('insertRow', {
index: 0,
row: {}
});
cellStyle();
});
});
function cellStyle1(value=Null, row=Null, index=0, field=Null) {
return {css: {"background-color": "blue"}}
}