Hi!
I have configured ion-alert with input:
const alert = await alertController.create({
header: 'Customer quantity',
backdropDismiss: false,
buttons: [
{
text: 'Save',
role: 'confirm'
}
],
inputs: [
{
placeholder: "Qty",
type: "number",
name: "qty",
id: "qty"
}
]
})
So when user opens this alert, and focus on input, there is phone numeric keyboard with “go” button. By default “go” (phone keyboard) does nothing. Is it possible to make it act like “Save” (confirm role) button?