<ClientMessages PagerTooltipFormatString="" />.
During scroll, RadGrid reports an error in function: _applyPagerTooltipText:function(_12a,_12b,_12c){var _12d=this._owner.ClientSettings.ClientMessages.PagerTooltipFormatString;var _12e=/\{0[^\}]*\}/g;var _12f=/\{1[^\}]*\}/g;var _130=((_12b==0)?1:_12b+1);var _131=_12c;_12d=_12d.replace(_12e,_130).replace(_12f,_131);_12a.innerHTML=_12d;}
<ClientMessages PagerTooltipFormatString=" " /> gives no error, but it still shows undesired ToolTip. Condition if(_12a){}else{the rest of the code} would sort this out.
Above is because I need to remove ToolTip during scrolling. Any suggestions?
Scrolling settings are:
<Scrolling AllowScroll="true" EnableVirtualScrollPaging="true" UseStaticHeaders="True" ScrollHeight="1px" />
Aleksandar