3
私にはタスクの配列があり、それぞれに日付が含まれています。私はdatepickerで一致する日を強調したいが、それを達成するためにドキュメントで見つけることはできないようだ。誰でも手伝うことができますか?ここでNg-Bootstrap Datepicker、Angular4で特定の日を強調する方法
https://ng-bootstrap.github.io/#/components/datepicker/api
私typescriptですです:
import { Component, OnInit } from '@angular/core';
import {NgbDateStruct} from '@ng-bootstrap/ng-bootstrap';
const now = new Date();
@Component({
selector: 'app-dashboard',
templateUrl: './dashboard.component.html',
styleUrls: ['./dashboard.component.scss']
})
export class DashboardComponent implements OnInit {
constructor() {
}
ngOnInit() {
}
model: NgbDateStruct;
date: {year: number, month: number};
selectToday() {
this.model = {year: now.getFullYear(), month: now.getMonth() + 1, day: now.getDate()};
}
}
とHTML:立ち往生他の誰のために
<ngb-datepicker #dp [(ngModel)]="model" (navigate)="date = $event.next"></ngb-datepicker>