Completed
Last Updated: 19 Jun 2014 15:57 by Jason
ADMIN
Slav
Created on: 24 Mar 2014 18:02
Category: Rating
Type: Bug Report
1
The items of RadRating appear hovered when the cursor moves outside of the boundaries of the control and Precision is set to "Item"
The hovered state of the items of RadRating is not cleared when the Precision property of the rating is set to Item.

A possible workaround is adding the following script just before the closing </form> tag:

var $T = Telerik.Web.UI;
$T.RadRating.prototype._mouseOut = function (e, mouseMove) {
	var targetElement = e.target || e.srcElement;
	if (this._ulWrapper === targetElement || $telerik.$(this._ulWrapper).has(targetElement).length > 0) {
		if (!mouseMove && $T.RatingPrecision.Item != this._precision)
			this._hoveredItem = null;
	}
	this._attachDocumentHandlers(false);
	this._createPartElements(false);
	this._storeStartCoords(false);
	this._spanSize = null;
	this._hoveredItem = null;
	this._clearOverState();
	if (this._clearSelectedStateOnHover)
		this._synchronizeUIWithValue(this._value);
}
4 comments
Jason
Posted on: 19 Jun 2014 15:57
Mihail, just to be clear, this will be in the second Q2 release or is it fixed in yesterday's 2014.2 618 build I just downloaded?
Jason
Posted on: 19 Jun 2014 13:05
Fantastic news, looking forward to it.  Thank you for the update!
ADMIN
Misho
Posted on: 19 Jun 2014 12:17
The issue is fixed and will be available in Q2 2014 SP1
Jason
Posted on: 11 Apr 2014 14:52
I ran into this one yesterday after updating to the latest version.  It's holding me up right now moving a bunch of new code to production.  I hope its resolved and we see a fix very soon.