hi
i use ajax rating for voting but i want to have for example every 10 vote as 1. so i wrote this code
<cc1:Rating ID="Rating1" runat="server" Direction="RightToLeft" RatingDirection="RightToLeftBottomToTop"
EmptyStarCssClass="emptyRatingStar" FilledStarCssClass="filledRatingStar"
CurrentRating='<%# int.Parse(Eval("ItemNumber").ToString()) / 10 %>' MaxRating="150" StarCssClass="ratingStar" ReadOnly="true"
WaitingStarCssClass="savedRatingStar">
</cc1:Rating>
it's ok. but rating has something like tooltip. as the mouse go over it shows the current rating. i want show the real amount of ItemNumber. is it possible?
i mean for example i have 3 stars but onmouse over it shows 30.
what can i do?
at least i dont wanna see that tooltip thing
thanks