gpt4 book ai didi

javascript - 初年如何打开uib-datepicker-popup? [ Angular ]

转载 作者:行者123 更新时间:2023-11-30 15:57:18 26 4
gpt4 key购买 nike

当我打开它时,日历会显示年份和日期。我能以某种方式让它首先显示年份吗?

这是 html:

<input style="width: 30%;float: left;" name="date" id="date" type="text" 
class="form-control"
uib-datepicker-popup="dd/MM/yyyy"
ng-model="ctrl.userProfile.birthDate"
is-open="dpOpenStatus.withRequired"
ng-required />
<span class="input-group-btn">
<button type="button"
class="btn btn-default"
ng-click="setDpOpenStatus('withRequired', $event)">
<i class="glyphicon glyphicon-calendar"></i>
</button>
</span>

最佳答案

根据docs ,您可以将 datepicker-options 对象的 datepickerMode 属性设置为以下之一:

datepickerMode C (Default: day) - Current mode of the datepicker (day|month|year). Can be used to initialize the datepicker in a specific mode.

因此,在您看来,添加以下内容:

datepicker-options="options"

然后在你的 Controller 中添加:

 $scope.options = {
datepickerMode: 'year',
minDate: new Date()
};

关于javascript - 初年如何打开uib-datepicker-popup? [ Angular ],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38314068/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com