or
Hi,
Can I resize the popup in a ComboBoxColumn to fit the items in the list? I know I can use the:
Popup.MinimumSize
Popup.Size
But is there a way to autosize to bestfit the contents of the list?
Kind Regards
Justin
and working with RadGridView object.
I have a RadGridView which contains a large possible values. (0-200000)
In order to allow the user type the requested value and get a visual feedback that he is in EDIT mode I used the next code (as you suggested):
colType.DropDownStyle = RadDropDownStyle.DropDown;
colType.AutoCompleteMode = AutoCompleteMode.SuggestAppend; -> instead of APPEND.
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 );