A javascript method to be executed on the client when the user moves the mouse out of the control.
The method specified is passed four parameters in this order: the ClientID, RatedID, UserRating, and the AverageRating.
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;
}
SlickRater Class | KrispWare Namespace