We have the following scenario: the grid's datasource comes from some business layer function, which filters the data based on the column filters. But some columns are too long, and we trim them. But if matched string is trimmed, than that row won't show up, because the grid does an internal filtering. Is there any way to turn off this internal filtering? I mean a property like "AllowCustomFiltering". I know that clearing the FilterExpression string does the trick, but in order to preserve the filtering on the UI, this string needs to be reassigned after DataBound. (There are many pages using RadGrid, and it would be a pain to hand-implement this save/load trick, and anyways, there is no reason that the grid should apply filtering as our business functions do it).
So, I'm looking for a built-in method to turn off the internal filtering of RadGrid, but still preserving the filter controls behavior on the UI.
So, I'm looking for a built-in method to turn off the internal filtering of RadGrid, but still preserving the filter controls behavior on the UI.