I have form and when I click on the datepicker or select field, it opens and then immediately closes.
Any idea if this is a bug or am I missing something crucial here?
Datepicker
<input type="text" [(ngModel)]="transaction.dateTemp" name="date" materialize="pickadate [materializeParams]="[{ format: 'dd/mm/yyyy' }]" />
Select
<div class="input-field col s6">
<select materialize="material_select" [(ngModel)]="transaction.direction" name="direction">
<option value="outgoing" selected>Outgoing</option>
<option value="incoming">Incoming</option>
</select>
<label>Incoming/Outgoing Transaction</label>
</div>
I have form and when I click on the datepicker or select field, it opens and then immediately closes.
Any idea if this is a bug or am I missing something crucial here?
Datepicker
Select