A javascript method to be executed on the client when the user moves the mouse out of the control.

public virtual string OnMouseOutJScript {get; set;}

Remarks

The method specified is passed four parameters in this order: the ClientID, RatedID, UserRating, and the AverageRating.

Example

Here is an example javascript function handling this client-side event:

function handleMouseOver (clientID, ratedID, userRating, avgRating)
{
    var rating = (userRating > 0) ? userRating : avgRating;
    document.getElementById(ratedID + "_span").innerText = rating;
}

See Also

SlickRater Class | KrispWare Namespace