Wijmo UI for the Web
rowStyleFormatter オプション

wijgridの行のスタイル設定に使用される関数。

シンタックス
Javascript (Usage) 
$(function () {
    
    //値を取得する
    var returnsValue; //タイプ: any
    returnsValue = $(".selector").wijgrid("option", "rowStyleFormatter");
    
    //値を設定します
    var newValue; //タイプ: any
    $(".selector").wijgrid("option", "rowStyleFormatter", newValue);
        
});
Javascript (Specification) 
var rowStyleFormatter : any;
使用例

// 交互行のテキストを斜体にします。
$("#demo").wijgrid({
data: [
[0, "Nancy"], [1, "Susan"], [2, "Alice"], [3, "Kate"]
],
rowStyleFormatter: function (args) {
if ((args.state & wijmo.grid.renderState.rendering) && (args.type & wijmo.grid.rowType.dataAlt)) {
args.$rows.find("td").css("font-style", "italic");
}
}
});
// 1行おきに行のテキストを斜体にします。$("#demo").wijgrid({ data: [ [0, "Nancy"], [1, "Susan"], [2, "Alice"], [3, "Kate"] ], rowStyleFormatter: function (args) { if ((args.state & wijmo.grid.renderState.rendering) && (args.type & wijmo.grid.rowType.dataAlt)) { args.$rows.find("td").css("font-style", "italic"); } }});
解説

関連トピック

参照

options タイプ
wijgrid jQuery ウィジェット

 

 


Copyright © GrapeCity inc. All rights reserved.