I have a windows form with Gridex Control which hangs when the 'Enter' key is pressed when editing a row. The 'Enter' key triggers 'EndCustomEdit' event and the win forms freezes.
Is there a way I can disable the triggering of 'EndCustomEdit' event while the enter key is pressed?.
I tried implementing Gridex 'EnterKeyBehavior' property inside 'EndCustomEdit' event and tried setting it to none value but didn't see the required result.
this.gexContributor.EnterKeyBehavior = EnterKeyBehavior.None;
The other possibility i can think of is to create keyDown or KeyPressed event handler and handles the enter key behavior.
Plz let me know your thoughts. Thanks in advance :)
Following setting
at the designer.cs level would fix this issue.