Home     About PeterBlum.com     Policies     Download a Licensed Product     Newsletter
Peter's Date and Time
MultiSelectionCalendar Control
Back

The MultiSelectionCalendar control is a variation of the Calendar Control  that allows multiple selections. Use it when you need to store a list of dates. It has most of the same 200+ properties from the Calendar control including support for the SpecialDates Control  with its powerful formatting features and Multiple Month View.


Product Features

  • There are several selection modes:
    • Individual dates. When turned off, you can prevent selecting single dates. This lets you use the week, month, and day of week features exclusively.
    • By week
    • By month
    • By day of the week
    • Range. Keeps a contiguious selection between the earliest and latest dates.
    • Use the SHIFT key to extend the selection from the last cell selected.
  • You can limit the number of dates selection and show an alert when that limit is exceeded.
  • The Current Date Label can show the number of dates selected or the start and end dates.
  • One challenge users face with most multiple selection calendars is how to interact with it. This control introduces the Message Center, an interactive help section at the bottom of the control.

Demos

Previous Month
Next Month
November 2024 Select a Different Month
SunMonTueWedThuFriSat
272829303112
3456789
10111213141516
17181920212223
24252627282930
1234567
Previous Month
Next Month
November 2024 Select a Different Month
SunMonTueWedThuFriSat
>272829303112
>3456789
>10111213141516
>17181920212223
>24252627282930
>1234567
Click on dates to toggle their selection.
Previous Month
Next Month
November 2024 Select a Different Month
+Sun
v
Mon
v
Tue
v
Wed
v
Thu
v
Fri
v
Sat
v
>272829303112
>3456789
>10111213141516
>17181920212223
>24252627282930
>1234567
Click on dates to toggle their selection.
The default without the Message Center. Adds select by week. All selection modes available. Also imposes a limit of no more than 40 days selected.
Previous Year Previous Month
Next Month Next Year
November 2024 - December 2024 Select a Different Month
November 2024
 SunMonTueWedThuFriSat
44272829303112
453456789
4610111213141516
4717181920212223
4824252627282930
491234567
December 2024
 SunMonTueWedThuFriSat
491234567
50891011121314
5115161718192021
5222232425262728
12930311234
2567891011
Today Clear Show
Click on dates to toggle their selection.
User must select a range. A few formatting options have been added.

The ASP.NET markup for these demos:
<des:MultiSelectionCalendar id="MultiSelectionCalendar1" runat="server" >
   <MessageCenter Activate="false" />
</des:MultiSelectionCalendar>
<des:MultiSelectionCalendar id="MultiSelectionCalendar2" runat=server SelectWeeks="True"></des:MultiSelectionCalendar>
<des:MultiSelectionCalendar id="MultiSelectionCalendar3" runat="server" 
   SelectWeeks="True" SelectMonth="True" SelectDOW="True" MaximumSelectedDates="40">
   <CurrentDateLabels ShowField="RecommendedRow" />
</des:MultiSelectionCalendar>
<des:MultiSelectionCalendar id="MultiSelectionCalendar4" runat="server" 
   RangeMode="True" AutoFormatYearChangeButtonPositions="Recommended"
   MultiMonthColumnCount="2" ShowWeekNumbers="True" >
   <TodayCommand ShowField="FooterRow1" RegionInRow="Right" />
   <ClearCommand ShowField="FooterRow1" RegionInRow="Right" />
   <ShowSelectionCommand ShowField="FooterRow1" RegionInRow="Right" />
   <CurrentDateLabels ShowField="FooterRow1" RegionInRow="Left" DateFormatWithMultipleSelections="AbbreviatedNoYear" />
</des:MultiSelectionCalendar>

Back