Version

addSelectorClass Method

Add a new css class to the row selector element.
Syntax
ASP.NET Ajax Javascript (Specification) 
function addSelectorClass( 
   row : GridRow,
   cssClass : String
) : (Any);
ASP.NET Ajax Javascript (Usage) 
var resultVar = instanceOfRowSelectors.addSelectorClass(GridRow,String);

Parameters

row
Reference to the row.
cssClass
CSS class name.
Remarks

This method is designed for other behaviors to use. It shouldn't be necessary to use it otherwise.

If mutiple css classes are applied, the resolution will be up to the browser depending on the order that the classes are declared in.

See Also