-
Notifications
You must be signed in to change notification settings - Fork 41
Closed
Labels
Description
Great Plugin!
I noticed that enterSubmit
does not submit my form.
Do you have a working example of this?
I'm doing something like this at the moment, It does not submit the form
HTML
<form ng-submit="login()">
<!--- Inputs --->
<input type="password"
name="password"
data-ng-model="credentials.password"
ng-virtual-keyboard="{kt: 'numeric', enterSubmit:true}"
required="">
</form>
JS
VKI_CONFIG.layout.numeric = {
'name' : 'numeric',
'keys': [
[['1', '1'], ['2', '2'], ['3', '3']],
[['4', '4'], ['5', '5'], ['6', '6']],
[['7', '7'], ['8', '8'], ['9', '9']],
[['←', 'Bksp'], ['0', '0'], ['↵', 'Enter']]
]
};