我的项目需要从kendo-datepicker迁移到有角的uib datepicker。 加载uib datepicker时,onclick事件不起作用。 关于日期选择器,我有以下问题: 1.我的uib CDN是否正确导入? “ https://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/2.5.0/ui-bootstrap-tpls.min.js”-这是我使用的CDN
2。关于日期选择器onclick事件
var data = context.Customer
.GroupJoin(context.Orders, c=> c.Id, o => o.CustoerId, (c, o) => new
{
customer = c,
orders= o
})
.ToList()
.Select(s => new
{
s.customer.Name,
s.customer.Id
AllOrdersRef = s.orders == null ? null : string.Join(", ", s.orders.Select(x => x.UniquRef))
});
日期选择器js代码
<div class="input-group">
<input type="text" class="form-control" uib-datepicker-popup="dd.MM.yyyy" ng-model="vm.user.activationDate" config.open="$parent.opened" datepicker-options="vm.datepickerOptions" ng-required="true" close-text="Close" alt-input-formats="altInputFormats" />
<span class="input-group-btn">
<button type="button" class="btn btn-default" ng-click="vm.openDatePicker()">
<i class="far fa-calendar-alt"></i>
</button>
请帮助我解决此问题。