The Message Center tells the user how to edit the selections. It appears in the footer, below command buttons and the Current Date Label.
The MultiSelectionCalendar.MessageCenter property hosts these properties to customize the Message Center:
Tokens supported by various textual properties:
If you want to change the default style sheets, the styles are defined in the [web app]\DES\Appearance\Date And Time\Calendar.css file.
<h2>Example 1</h2> <span class="PropertyName">DateFormat</span>=AbbreviatedNoYear<br/><br/> <des:MultiSelectionCalendar ID="MultiSelectionCalendar1" runat="server"> <MessageCenter DateFormat="AbbreviatedNoYear" /> </des:MultiSelectionCalendar> <br/><br/> <h2>Example 2</h2> <span class="PropertyName">DateFormat</span>=Short. Many text properties have been customized.<br/><br/> <des:MultiSelectionCalendar ID="MultiSelectionCalendar2" runat="server" SelectDOW="True" SelectMonth="True" SelectWeeks="True" ShiftKeyForRange="False"> <MessageCenter DOWNextSelectionText="CLICK to toggle {DOW}" ExplainShiftKeyText="SHIFT+CLICK to extend the selection from the last date clicked" MultipleSelectionsText="CLICK on dates to toggle their selection. CLICK {CLEAR} to clear all selections" NextMultipleSelectionsText="CLICK to select from {FIRSTDATE} to {LASTDATE}" NextSelectionText="CLICK to select {DATE}" NextUnselectionText="CLICK to unselect {DATE}" NoSelectionText="CLICK on dates to toggle their selection" OneSelectionText="CLICK on dates to toggle their selection" /> </des:MultiSelectionCalendar> <br/> <h2>Example 3</h2> <span class="PropertyName">Activate</span>=false The Message Center is hidden.<br/><br/> <des:MultiSelectionCalendar ID="MultiSelectionCalendar3" runat="server"> <MessageCenter Activate="false" /> </des:MultiSelectionCalendar>