Sunday, March 11, 2012

Rating Control + mouseover

The Raiting extender has a MouseOver event you can use, this event is different from the onmouseover event you are trying to use, here's an example of how to set it up:

Add this script to your page:
1<script language="javascript">2function onMouseOver(source, args) {3 alert(args.get_Rating());4}56function pageLoad() {7 $find("Rating1_RatingExtender").add_MouseOver(onMouseOver);8}9</script>

Hope this helps,

Elias.


works great , thank you!

This is just what i needed :)

No comments:

Post a Comment