-
-
Notifications
You must be signed in to change notification settings - Fork 874
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How do I show the selected day in week view? #222
Comments
mattlewis92
pushed a commit
that referenced
this issue
Jun 25, 2017
BREAKING CHANGE: the `dayClicked` output has been replaced with the `dayHeaderClicked` output. To migrate: Before: ``` (dayClicked)="clickedDate = $event.date" ``` After: ``` (dayHeaderClicked)="clickedDate = $event.day.date" ``` Closes #222
Sorry about the late reply on this one! I've just released 0.18.1 which should now let you do this. I've put together a plunker that demonstrates how to use the API here: http://plnkr.co/edit/xbRlY64TuCIIL1ZDKgoj?p=preview Hope that helps! 😄 |
Txs. Exactly what I needed.
…On Jun 25, 2017 5:44 PM, "Matt Lewis" ***@***.***> wrote:
Sorry about the late reply on this one! I've just released 0.18.1 which
should now let you do this. I've put together a plunker that demonstrates
how to use the API here: http://plnkr.co/edit/
xbRlY64TuCIIL1ZDKgoj?p=preview
Hope that helps! 😄
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#222 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AOPd420pLINVuOm6APV4Obj-_BU-GAUtks5sHtTTgaJpZM4Nq56->
.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I see the class cal-today applied if its the current day (and other class applied to the other days in the week view).
How do I apply a different class to a selected day (background-color)?
i.e.
[class.cal-today]="day.isToday"
The text was updated successfully, but these errors were encountered: