I'm using an evaluation version of 2009.2.701.35, and seem to be running into issues filtering from the clientside. Whenever I try to call the filter function on the mastertableview, it gives me an error within the MicrosoftAjax.js served by TelerikWeb.UI.WebResource.axd, specifically that the trim() function is not available on a variable i. This error is within the Sys$Enum$parse function of that file.
The way that I'm calling the function that I'm calling is as thus (from a RadComboBox):
function filterCounty(sender, args){
$find(<%=RadGrid1.ClientID%>).get_masterTableView().filter("CountyCode", sender.get_value(), Telerik.Web.UI.GridFilterFunction.EqualTo);
// alert(sender.get_value());
}
Based on what I'm seeing, the enum gets evaluated to the numeric value 5, and then is sent to the Sys$Enum$parse function. For whatever reason, the javascript engine seems to choke at this point.
Is this a problem that has been run into before?