Hi, I've the same problem after the update of my project to the version 3.4 of Xamarin.Forms
All my page with a Syncfusion numeric editor and a button hangs when I click on the confirm button of the numeric keyboard...
Also the datagrid sample in this thread, with Syncfusion 16.3.0.36 and Xamarin.Forms > of 3.2, hangs
Any suggestion?
I'm using Xamarin Forms 3.4 and I have this issue with a simple
SfNumericUpDown: "Java.Lang.IllegalStateException: focus search returned
a view that wasn't able to take focus!" when I tap the Done button in
the keyboard. If I tap another region on the screen, the exception is
not appears.
I found a bug (I guess): the
exception is present when there is no "next" (TabIndex) text field
(entry or any control). If I have a TabIndex greater than SfNumericUpDown's TabIndex property, the focus follow that order and there is not exception.
I need to put the controls in this order:
SomeTxt (TabIndex 0)
SomeComboBox (TabIndex 1)
SfNumericUpDown (TabIndex 2)
Button (I tried with TabIndex 3 or without it but the issue is present).
As temporal solution, I added a dummy Entry after the numeric control or move it to upper.
Any suggestion? I'm desesperate with this issue :(