Hi
One of the columns in our RadGrid is a textbox. In Edit mode, when user selects text from this textbox by hovering and selecting with a mouse and if the mouse goes across to the next column (over to the adjacent control) an error comes up that reads
"Error : 'this.input[...] is null or not an object"
The mouse hover calls the event handler below. The control that is passed into this event hadler is the adjacent control instead of the text box. For this reason input[a] is null. Had the textbox been passed it would not have been null
One of the columns in our RadGrid is a textbox. In Edit mode, when user selects text from this textbox by hovering and selecting with a mouse and if the mouse goes across to the next column (over to the adjacent control) an error comes up that reads
"Error : 'this.input[...] is null or not an object"
The mouse hover calls the event handler below. The control that is passed into this event hadler is the adjacent control instead of the text box. For this reason input[a] is null. Had the textbox been passed it would not have been null
_onTextBoxMouseOverHandler:
function(b){var a=Telerik.Web.UI.RadInputManager.getTarget(b);
if
(!a){return;
}
this._inputs[a]._hovered=true;
Any help on this one with be greatly appreciated!
Thanks
mtoori
