Hello all,
The same issue is replicated in other Telerik controls as well so we decided to review the scenario again and make improvements for seamless integration between the Telerik controls and the SetFocusOnError functionality.
Regards,
Peter Milchev
Progress Telerik
Five days of Blazor, Angular, React, and Xamarin experts live-coding on twitch.tv/CodeItLive, special prizes, and more, for FREE?! Register now for DevReach 2.0(20).
Hi there,
The focus is not set, because the input that keeps the pickers value is hidden. We decided to decline this enhancement since we do not like to introduce a breaking change in the control as well as Konstantin already provided a solution for it.
Regards,
Rumen
Progress Telerik
Funciona!!!! thanks
Current workaround: <script type="text/javascript"> var _ValidatorSetFocus = ValidatorSetFocus; ValidatorSetFocus = function ValidatorSetFocus(val, event) { var ctrlObj = $find(val.controltovalidate); if (ctrlObj && ctrlObj._dateInput) { ctrlObj._dateInput.focus(); Page_InvalidControlToBeFocused = ctrlObj._dateInput.get_element(); return; } _ValidatorSetFocus(val, event); }; </script>