or
Appointment app = new Telerik.WinControls.UI.Appointment(DateTime.Now, DateTime.Now);app.AllowDelete = false;radScheduler1.Appointments.Add(app);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.

