
I tried using the function MaxLength and have not had success already perform various searches on Telerik forum and found several workarounds but none of them worked.
I am very concerned as a feature as basic controls does not work in package Telerik.
I would like a response from someone in the development team about this feature Telerik who apparently does not work.





Hi
I created this example to show problem that occurs in my real application.
This is my source code:
public class MyClass {     public string MyProperty { get; set; } }public partial class Form1 : Form {     private List<MyClass> _myList = new List<MyClass>();     public Form1()     {         InitializeComponent();         radGridView1.DataSource = _myList;         radGridView1.Columns[0].Width = 200;     }     private void radGridView1_EditorRequired(object sender, Telerik.WinControls.UI.EditorRequiredEventArgs e)     {         RadDropDownListEditor editor = new RadDropDownListEditor();         RadDropDownListEditorElement editorElement = editor.EditorElement as RadDropDownListEditorElement;         editorElement.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDown;         editorElement.AutoCompleteMode = AutoCompleteMode.SuggestAppend;         e.Editor = editor;         e.EditorType = typeof(RadDropDownListEditor);     } }
When I want add new row I type something in cell and I press ENTER but new row is not added. Cell is cleared.
If I don`t use custom editor (comment out code in EditorRequired handler) on ENTER pressed new row is added with typed value.
How to solve this issue when I use custom editor?
Regards

