I have a radgrid which is programmatically binding inside needDataSource event. Additionaly I set two parameters for columns inside columnCreated event:
boundColumnFilter.AutoPostBackOnFilter = true;
boundColumnFilter.CurrentFilterFunction = GridKnownFunction.Contains;
Filters are enabled of course. I would like filtering data after press enter key but it doesn't work (nothing happen after press enter).
If I configure radgrid manually in aspx with parameters like above everything works well. Do you have any sugestion?