Posted 12 May 2012 Link to this post
Posted 14 May 2012 Link to this post
As I understand you edit a single value in code behind and the filter is not applied. If this is the case, then you should inform the GridView that the collection has changed. You may do this like so:
myGridView.Items.EditItem(editedItem);
// change the value
myGridView.Items.CommitEdit();
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>
Posted 01 Dec 2013 Link to this post
I have the following code and still the grid isn't filtering. Am I missing something ?
private
void
AddFilterDescriptor(
string
Member, FilterOperator Operator,
object
Value)
{
rgvExpenses.FilterDescriptors.Clear();
FilterDescriptor filter =
new
FilterDescriptor();
filter.Member = Member;
filter.Operator = Operator;
filter.Value = Value;
rgvExpenses.FilterDescriptors.Add(filter);
rgvExpenses.Items.CommitEdit();
}
Posted 02 Dec 2013 Link to this post