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

fix: specify input mode on mobile

parent c17b2572
No related branches found
No related tags found
1 merge request!229Resolve "Le séparateur décimal est passé à la virgule sur certaines configurations"
......@@ -88,7 +88,9 @@
<input matInput *ngIf="isNumberInput(cell)" type="text" required
[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"
(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