I have RadGridView and in that I have GridViewComboBoxColumn column (name is Comment). End user must select from the value for that column from GridViewComboBoxColumn list, or write the new value in that field. The problem is that when I write new value that isn't from list, after leaving that column new value not saved. Which option must i set in GridViewComboBoxColumn or other place.
Thank you..

Greetings!
After upgrading to 2016 Q1, we've encountered a bug while appending text to radtextboxcontrol before setting anything to .Text property of it.
For example:
// Not working (exception is that 'startPosition' value cannot be null)
this.radTextBoxControl1.AppendText(String.Format("{0}", formattedString));
// Works
this.radTextBoxControl1.Text = " "; // maybe some initialisation goes here or smth...
this.radTextBoxControl1.AppendText(String.Format("{0}", formattedString));

foreach (Appointment app in ModificationsScheduler.Appointments) { cAppointment = (CustomAppointment)app; if (containsString(cAppointment.Summary.ToString(), strIndex, StringComparison.Ordinal) == true) { this.ModificationsScheduler.FocusedElement = app; } }

Hi,
I have a Property Grid in my form and I made this RightToLeft. the problem is that I can't resize the item Height correctly.
The mouse cursor type should change to resize when the mouse is in the | border of item, but it doesn't work well.
You can see this in picture.
Thanks


Hello,
Having a datasouce implementing IEditableObject. Is there a way with the gridview to call the CancelEdit on a row scope ?
I have no problem to validate a cell value and to cancel the change when it is not valid. But I have no idea how to do this on a row scope.
Something like the sliverlight GridView (first ESC cancel the cell editor, second ESC cancel the row changes)
http://demos.telerik.com/silverlight/#GridView/Commands
My business need is the following :
For a given day, I should record a list of time range object having two properties (StartTime, EndTime). When a Cell is validated, I check that the editor could be converted to a Timespan. When a row is validated I check that the StartTime and the EndTime are not null, that the StartTime is not bigger than the EndTime and to check that there is no range overlap with another Row.
Thanks for your support

Hi Telerik Team,
I have a RadMaskedEdit on a form.
When you check the Modified
flag (radMaskedEditBox1.Modified ) it will true or false based on the typing something on radMaskedEditBox.
but if you set the Masktype property to Numeric, you will only get false return
value for Modified property.
Any suggestions?
Thanks,
Abbas


