Skip to main content

ASPxClientCalendar.SelectRange(start, end) Method

Selects the specified range of dates within the calendar.

Declaration

SelectRange(
    start: Date,
    end: Date
): void

Parameters

Name Type Description
start Date

A date-time value that specifies the range’s first date.

end Date

A date-time value that specifies the range’s last date.

Remarks

var start = new Date("2023-01-05");
var end = new Date("2023-01-10");
calendar.SelectRange(start, end);

To deselect the specified date range, use the ASPxClientCalendar.DeselectRange method.

See Also