allowHighlightUpdates property
bool
get
allowHighlightUpdates
Implementation
bool get allowHighlightUpdates => _allowHighlightUpdates;
Set this to false to temporarily suppress updates to the calendar's range highlights. Defaults to true.
Implementation
@Input()
set allowHighlightUpdates(bool value) {
var nowAllowed = value;
if (_allowHighlightUpdates != nowAllowed) {
_allowHighlightUpdates = nowAllowed;
if (nowAllowed) onCalendarChange(model.value);
}
}