-
Notifications
You must be signed in to change notification settings - Fork 4.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
p-inputOtp does not paste code sent by SMS, only sets the first digit #16373
Labels
Status: Pending Review
Issue or pull request is being reviewed by Core Team
Milestone
Comments
jvegaseg
added
the
Status: Needs Triage
Issue will be reviewed by Core Team and a relevant label will be added as soon as possible
label
Sep 12, 2024
@jvegaseg any updates? |
I ended up with this solution and it works well on my side: <p-inputOtp [formControl]="otpInput" [integerOnly]="true" [length]="6">
<ng-template pTemplate="input" let-token let-events="events">
<input
pInputText
type="text"
[maxLength]="1"
(input)="events.input($event)"
(paste)="events.paste($event)"
[attr.value]="token"
autocomplete="one-time-code"
/>
</ng-template>
</p-inputOtp> |
this bug is also present in primeng 18.0.0-beta.2 |
this bug is also present in primeng 18.0.0-beta.3 |
I handled this use case in my last PR and I wrote a test fo it , you can check it in this commit : 1bde5dd |
created #16824 to fix the problem in v18 |
mertsincan
added
Status: Pending Review
Issue or pull request is being reviewed by Core Team
and removed
Status: Needs Triage
Issue will be reviewed by Core Team and a relevant label will be added as soon as possible
labels
Dec 4, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
Using a mobile and when an OTP is sent by SMS, the keyboard suggest the code, if your select the suggestion, only the first char is copied in the fields (6-digits).
I do not know it it related to autocomplete="one-time-code" attribute but p-inputOtp is not using it.
Environment
A web page using Chrome navigator on an iphone mobile.
Reproducer
No response
Angular version
18.2.4
PrimeNG version
17.18.10
Build / Runtime
TypeScript
Language
TypeScript
Node version (for AoT issues node --version)
v20.14.0
Browser(s)
Chrome 128.0.6613.120
Steps to reproduce the behavior
No response
Expected behavior
6-digits code filled in the p-inputOtp field
The text was updated successfully, but these errors were encountered: