Ario.Paxaz Posted June 14, 2017 Posted June 14, 2017 Hi When I write below code in ClientEvents.ExtEvents on keydown for uniedit1 ,the control go on the next by enter key. function keydown(sender, e, eOpts) { if (e.getKey() == 13) { e.keyCode = e.TAB; return e.keyCode; } } Now I write below code,and put it in KeyDown event of UniEdit1.But don't apply. UniEdit1.ClientEvents.ExtEvents.Values['keydown']:='if (e.getKey() == 13) {e.keyCode = e.TAB;return e.keyCode;}'; Which event must be used? Best Regards. Quote
Administrators Farshad Mohajeri Posted June 14, 2017 Administrators Posted June 14, 2017 You can implement this behavior without writing JS code. Pls see demo: FormNavigate Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.