在Angular UI-Grid中向UI Datepicker添加导引,可以通过以下步骤实现:
angular.module('myApp', ['ui.grid', 'ui.bootstrap']);
<div ng-app="myApp" ng-controller="myCtrl">
<div ui-grid="gridOptions" class="grid"></div>
</div>
angular.module('myApp').controller('myCtrl', function($scope) {
$scope.gridOptions = {
columnDefs: [
{ field: 'name', displayName: 'Name' },
{ field: 'date', displayName: 'Date', cellTemplate: '<input type="text" uib-datepicker-popup="{{format}}" ng-model="MODEL_COL_FIELD" is-open="datePickerOpened" />' }
],
data: [
{ name: 'John', date: new Date() },
{ name: 'Jane', date: new Date() }
]
};
});
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/2.5.6/ui-bootstrap.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/2.5.6/ui-bootstrap-csp.css" />
这样,你就可以在Angular UI-Grid中向UI Datepicker添加导引了。请注意,以上示例中使用了Angular UI-Bootstrap库中的日期选择器(uib-datepicker)。如果你想使用其他日期选择器,可以根据需要进行相应的更改。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云