Why does val not return anything for an Input setup with type of number when entering a character?
I am using the following code below to extract value from Input control. When setting Input control with type = number the val returns nothing if a character is entered in the input control. I understand that when setting type = number ios/android will only produce number keypad but if running webapp you can still enter character. I wanted to get value and then use isNan to determine if a number was entered.
var val = Appery("Input_Text").val();
var val2 = Appery ("Input_Number").val ();