wijmo.grid.wijgrid 名前空間 > options タイプ : rowStyleFormatter オプション |
wijgridの行のスタイル設定に使用される関数。
Javascript (Usage) | |
---|---|
$(function () { //値を取得する var returnsValue; //タイプ: any returnsValue = $(".selector").wijgrid("option", "rowStyleFormatter"); //値を設定します var newValue; //タイプ: any $(".selector").wijgrid("option", "rowStyleFormatter", newValue); }); |
Javascript (Specification) | |
---|---|
|
// 交互行のテキストを斜体にします。 $("#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"); } }});