Version

addSelectorImage Method

Add a css class containing a new image to the row selector's image area. This method is designed for other behaviors to use. It shouldn't be necessary to use it otherwise. The images on the row selector are set using CSS classes. The classes will be applied to a div element inside the row selector. It's recommended that you don't set padding or borders in your css or it will distort the width and height of the row selector. Your style will need to set an appropriate width and height to display the image. If mutiple css classes are applied, the resolution will be up to the browser depending on the order that the classes are declared in.
Syntax
ASP.NET Ajax Javascript (Specification) 
function addSelectorImage( 
   row : GridRow,
   cssClass : String
) : (Any);
ASP.NET Ajax Javascript (Usage) 
var resultVar = instanceOfIRowSelectorsBehavior.addSelectorImage(GridRow,String);

Parameters

row
Reference to the row.
cssClass
CSS class name.
See Also