MultiColumnComboBox1.DataSource = DataTable1
MultiColumnComboBox1.DisplayMember = "Iso2"
MultiColumnComboBox1.ValueMember = "Iso2"
MultiColumnComboBox1.MultiColumnComboBoxElement.AutoSizeDropDownToBestFit = True
Dim fe As FilterExpression
fe = New FilterExpression(MultiColumnComboBox1.DisplayMember, FilterExpression.BinaryOperation.AND, GridKnownFunction.StartsWith)
MultiColumnComboBox1.EditorControl.MasterTemplate.FilterDescriptors.Add(fe)MultiColumnComboBox1.MultiColumnComboBoxElement.AutoCompleteMode = AutoCompleteMode.SuggestAppendMultiColumnComboBox1.AutoFilter = True
Any help is appreciated.
Sincerely Roberto
KnownColor clrTopBackgroundColor = KnownColor.White;
KnownColor clrBottomBackgroundColor = KnownColor.LightBlue;
radChart1.PlotArea.Appearance.FillStyle.FillType = FillType.Gradient;
radChart1.PlotArea.Appearance.FillStyle.MainColor = Color.FromKnownColor(clrTopBackgroundColor);
radChart1.PlotArea.Appearance.FillStyle.SecondColor = Color.FromKnownColor(clrBottomBackgroundColor);
radChart1.Update();
radChart1.UpdateGraphics();
Hi
Is there any way that I can override the default RadGridView Filter behaviour where the 'Contains' option is not presented for numeric fields?
I need the 'Contains' option to appear on a numeric column. I know that I could change the datatype on the table but that's not really an option for me.
I am a licensed user of RadControls for WinForms Q1 2010 SP2.
Any help is appreciated.
Thanks
I want to click on one cell in the grid view to get a whole column on another form related to one single cell,,
For example:
If I had a database which have products table and product details table,,
In my grid view I want to click on one product (cell) to get the details for that product in separate form which contains another grid view.
the details will be column in another table in the database.
Thanks in advance,,