I am using an EntityDataSource with my RadGrid, and I have a HyperLinkColumn of integer values that needs to be filterable. My problem is that whenever a string is passed into the filter control, a SqlEntityException is thrown with the following message:
So, I need a way to prevent the user from entering a string into the filter control. I was able to use a GridMaskedColumn in some cases, but in this particular case, the data in the column needs to be linked to another page, so I'm forced to use a HyperLinkColumn. Any thoughts?
'filtertext' could not be resolved in the current scope or context. Make sure that all referenced
variables are in scope, that required schemas are loaded, and that namespaces are referenced correctly.
Near simple identifier, line 6, column 228.So, I need a way to prevent the user from entering a string into the filter control. I was able to use a GridMaskedColumn in some cases, but in this particular case, the data in the column needs to be linked to another page, so I'm forced to use a HyperLinkColumn. Any thoughts?