0
私は日付ピッカーのカスタムディレクティブを使用しています。テンプレートは次のとおりです。日付ピッカーの角度2の検証
<div class="input-group">
<input type="text" id="tbxDate"
pattern="\d{1,2}/\d{1,2}/\d{4}"
class="form-control" (change)="changeValue($event)"
(blur)="onTouchedCallback()"/>
<div class="input-group-btn">
<button class="btn" (click)="show()">
<i class="fa fa-calendar"></i></button>
</div>
</div>
<div id="calendar-popup" class="calendar-popup"
[style.display]="panelVisible ? 'block' : 'none'"
[style.width]="width">
<bootflat-date-picker id="btf" [options]="myDatePickerOptions"
(dateChanged)="selectDate($event)" [(selDate)]="selectionDate">
</bootflat-date-picker>
</div>
パターンの検証は機能しません。英数字も使用しています。私はMM/DD/YYだけに制限したい
なぜ入力形式を 'date'として使用しないのですか –
これを試しましたが、ポップアップカレンダーはinbuildの日付テンプレートが表示されているので役に立たないです。 –
ですので、入力を読み取り専用にして、ポップアップの右端である –