Skip to content
Snippets Groups Projects
Commit 15f09c4f authored by François Grand's avatar François Grand
Browse files

fix: specify input mode on mobile

parent 4b4766d6
No related branches found
No related tags found
No related merge requests found
Pipeline #143192 failed
...@@ -88,7 +88,9 @@ ...@@ -88,7 +88,9 @@
<input matInput *ngIf="isNumberInput(cell)" type="text" required <input matInput *ngIf="isNumberInput(cell)" type="text" required
[ngModel]="getCellValue(cell)" (ngModelChange)="setCellValue(cell,$event)" [ngModel]="getCellValue(cell)" (ngModelChange)="setCellValue(cell,$event)"
(input)="inputValueChanged($event, cell)" (keypress) ="invalidNANInputValue($event)"> (input)="inputValueChanged($event, cell)" (keypress) ="invalidNANInputValue($event)"
pattern="^-?([0-9]*\.)?([0-9]+[Ee]-?)?[0-9]+$" inputmode="numeric"
>
<mat-select #selectWidget *ngIf="isSelect(cell)" [value]="cell.modelValue" <mat-select #selectWidget *ngIf="isSelect(cell)" [value]="cell.modelValue"
(selectionChange)="loiDebitSelected($event, cell)"> (selectionChange)="loiDebitSelected($event, cell)">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment