dojox.grid.publicEvents.onStyleRow
dojo.require("dojox.grid._grid.publicEvents");
defined in dojox/grid/_grid/publicEvents.js
Perform row styling on a given row. Called whenever row styling is updated.
Usage
function (/*Object*/ inRow) (view source)
parameter | type | description |
---|---|---|
inRow | Object | containing row state information: selected, true if the row is selcted; over: true of the mouse is over the row; odd: true if the row is odd. Use customClasses and customStyles to control row css classes and styles; both properties are strings. |
Examples
Example 1
onStyleRow({ selected: true, over:true, odd:false })