有没有办法使 AM/PM 成为 owl-date-time 选择器的要求?
Posted
技术标签:
【中文标题】有没有办法使 AM/PM 成为 owl-date-time 选择器的要求?【英文标题】:Is there a way to make AM/PM as a required in owl-date-time picker? 【发布时间】:2019-09-04 19:11:47 【问题描述】:我正在使用 owl-date-time 选择器作为角度时间选择器。 我已将此作为参考 - https://danielykpan.github.io/date-time-picker/ 。我的要求是
1) 在选择时间时我想强制使用 Am/Pm,但没有选择我们不应该点击设置按钮。
2)(如果上述要求不可行)在选择时间后我想在输入字段中禁用上午/下午。
这里可以参考代码https://stackblitz.com/edit/owl-datetimepicker
仅限定时器
<label class="example-input-wrapper">
Time:
<input placeholder="Time:"
[(ngModel)]="dateTime2"
[owlDateTimeTrigger]="dt2" [owlDateTime]="dt2">
<owl-date-time hour12Timer="true" [pickerType]="'timer'" #dt2></owl-date-time>
</label>
这是图片https://imgur.com/fmqyUR3
【问题讨论】:
【参考方案1】:您也可以通过应用 css 来做到这一点。
您可以在用户选择时间后申请class
。
:host ::ng-deep owl-dt-control-button-content
display:none;
【讨论】:
以上是关于有没有办法使 AM/PM 成为 owl-date-time 选择器的要求?的主要内容,如果未能解决你的问题,请参考以下文章