Hello,
New to RadGrid and all the fancy feature that are implemented out of the box. One that I found very helpful is the column filter. I am using the filter with a linqdatasource for the grid datasource. The filter is implemented using :
AllowFilteringByColumn="True"
Column are specified like this:
<
telerik:GridBoundColumn
DataField
=
"App.First"
DataType
=
"System.String"
FilterControlAltText
=
"Filter"
HeaderText
=
"First Name"
CurrentFilterFunction
=
"Contains"
FilterDelay
=
"2000"
ShowFilterIcon
=
"false"
AutoPostBackOnFilter
=
"true"
></
telerik:GridBoundColumn
>
This basic implementation does work on my development environment. However, once I compile and publish this project to my production server, the filters stop working. Watching the browser console I can see these errors happen when the filter is used on the production site:
TypeError: $find(...) is null bookingmgr:1:0
SyntaxError: unreachable code after return statement bookingmgr:1:13
TypeError: $find(...) is null
It seems as if the functions and or telerik library use to implement the filter function are coming over when I publish the project. Any ideas as to why this is?
Thanks,
Bryan