You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 19, 2018. It is now read-only.
I need for one project to display the current selected day in month view.
I can get it with "Timespan click", but it will be nice to display a feedback for the user with a border on the cell or anything else.
Regards
The text was updated successfully, but these errors were encountered:
I've just pushed 0.18.4 which should let you do this. on-timespan-click="cellClicked(calendarCell)"
var previousCell;
$scope.cellClicked = function(cell) {
if (previousCell) {
delete previousCell.cssClass;
}
cell.cssClass = 'selected'; // then style it with CSS.
previousCell = cell;
};
Hi,
I need for one project to display the current selected day in month view.
I can get it with "Timespan click", but it will be nice to display a feedback for the user with a border on the cell or anything else.
Regards
The text was updated successfully, but these errors were encountered: