This question is locked. New answers and comments are not allowed.
Hi there
In my grids, when i click the filtering icon, it throws a javascript error
the only way to not get this error is to turn on scrollable()
browser: IE8
grid code:
error thrown in jquery-1.4.2.min.js - "Invalid Argument" - line 116 of mined js file - bolded part is highlighted in visual studio
again, this throws every time i click a filter icon. makes no difference if the column is set to filterable, numeric, text, doesn't matter. setting to scrollable is the only way i can fix it.
please help!
In my grids, when i click the filtering icon, it throws a javascript error
the only way to not get this error is to turn on scrollable()
browser: IE8
grid code:
| <% |
| Html.Telerik().Grid<PitchView>() |
| .Name("PitchGrid") |
| .BindTo(Model) |
| .Filterable() |
| .Columns(columns => |
| { |
| columns.Bound(o => o.PitchId).Filterable(true).Title("ID"); |
| columns.Bound(o => o.AdvertiserName).Title("Advertiser"); |
| columns.Bound(o => o.BrandName).Title("Brand"); |
| columns.Bound(o => o.PitchName).Title("Pitch Name"); |
| columns.Bound(o => o.PitchDescription).Title("Description"); |
| columns.Bound(o => o.PitchStatus).Title("Status"); |
| columns.Bound(o => o.ConfidencePct).Format("{0:p}").Title("% Conf."); |
| columns.Bound(o => o.SalesRepName).Title("Acct Rep"); |
| columns.Bound(o => o.PrimaryDeliveryManagerName).Title("Primary DM"); |
| }) |
| .Sortable() |
| .Render(); |
| %> |
error thrown in jquery-1.4.2.min.js - "Invalid Argument" - line 116 of mined js file - bolded part is highlighted in visual studio
| 116: Na.test(a)?a.replace(Na,b):b}return f.filter&&f.filter.indexOf("opacity=")>=0?parseFloat(Oa.exec(f.filter)[1])/100+"":""}if(ha.test(b))b=Pa;b=b.replace(ia,ja);if(e)f[b]=d;return f[b]},css:function(a,b,d,f){if(b==="width"||b==="height"){var e,j=b==="width"?pb:qb;function i(){e=b==="width"?a.offsetWidth:a.offsetHeight;f!=="border"&&c.each(j,function(){f||(e-=parseFloat(c.curCSS(a,"padding"+this,true))||0);if(f==="margin")e+=parseFloat(c.curCSS(a,"margin"+this,true))||0;else e-=parseFloat(c.curCSS(a, |
again, this throws every time i click a filter icon. makes no difference if the column is set to filterable, numeric, text, doesn't matter. setting to scrollable is the only way i can fix it.
please help!