I get a "java.lang.NumberFormatException" error with B4J Version 8.30.
Same code works fine with B4J 8.10
When using the following code in a button click event, I get the following exception:
Attaching a sample project.
Maybe I am doing something wrong?
Same code works fine with B4J 8.10
When using the following code in a button click event, I get the following exception:
"java.lang.NumberFormatException: empty String"
B4X:
Sub Button1_Click
dialog.Title = "Insert some text"
Dim input As B4XInputTemplate
input.Initialize
input.lblTitle.Text = "Testing"
input.RegexPattern = ".+" 'require at least one character
Wait For (dialog.ShowTemplate(input, "OK", "", "CANCEL")) Complete (Result As Int) 'error
If Result = xui.DialogResponse_Positive Then
Log("This was the input text " & input.Text)
End If
End Sub
Attaching a sample project.
Maybe I am doing something wrong?