2014.2.724.45
When in Grid Init event:
GridID.FilterMenu.Items.Clear()
With filtering active on a column, clicking the filter button generates this javascript error:
Uncaught TypeError: Cannot read property `_linkElement` of undefined
Referring to this code:
Type.registerNamespace("Telerik.Web.UI");
Telerik.Web.UI.GridColumn=function(a){Telerik.Web.UI.GridColumn.initializeBase(this,[a]);
.....
var h=this._filterMenu.get_focusedItem()||this._filterMenu.get_items().getItem(0);
if(h._linkElement){h._linkElement.focus(); <-- err line. 6623
}else{if(h._templateElement){h._templateElement.focus();
The line above does not appear in the the version 2014.1.403.45 nor does the same error happen.
I have to add
<ClientEvents OnFilterMenuShowing="RadGrid_DisableFilterMenu" />
function RadGrid_DisableFilterMenu(sender, args) {
args.set_cancel(true)
}
When in Grid Init event:
GridID.FilterMenu.Items.Clear()
With filtering active on a column, clicking the filter button generates this javascript error:
Uncaught TypeError: Cannot read property `_linkElement` of undefined
Referring to this code:
Type.registerNamespace("Telerik.Web.UI");
Telerik.Web.UI.GridColumn=function(a){Telerik.Web.UI.GridColumn.initializeBase(this,[a]);
.....
var h=this._filterMenu.get_focusedItem()||this._filterMenu.get_items().getItem(0);
if(h._linkElement){h._linkElement.focus(); <-- err line. 6623
}else{if(h._templateElement){h._templateElement.focus();
The line above does not appear in the the version 2014.1.403.45 nor does the same error happen.
I have to add
<ClientEvents OnFilterMenuShowing="RadGrid_DisableFilterMenu" />
function RadGrid_DisableFilterMenu(sender, args) {
args.set_cancel(true)
}