In gridview i am displaying some string fields and few numeric fields. The filter operator for string fields is automatically set to "Contains", however the numeric fields are left with "no filter". Is there a way to make the default filter for numberic fields to "equal to" without setting it on each column definition (as shown in the code below)?
Thanks
GridViewTextBoxColumn colNumericField = new GridViewTextBoxColumn("NumericField");
colNumericField .Width = 100;
colNumericField .HeaderText = "Loc #";
colNumericField .ReadOnly = true;
colNumericField .FilterDescriptor = new Telerik.WinControls.Data.FilterDescriptor(null, Telerik.WinControls.Data.FilterOperator.IsEqualTo, null);
radGV1.MasterTemplate.Columns.Add(colNumericField );
Thanks