The following Setup Properties are available for use with the Mini Calendar. Click on a link to go directly to that section.
Type: String
Text displayed on the Cancel button within Fast Navigation.
Type: String
Controls the horizontal alignment of the date cells content inside the calendar area.
Center
Left
Justify
NotSet
Right
Type: String
Controls the format string that will be applied to the dates presented in the calendar area.
Type: String
Controls the vertical alignment of the date cell content inside the calendar area.
Bottom
Middle
NotSet
Top
Type: String
Controls the image displayed for the column header element.
Type: String
The text displayed for the column header element.
Type: String
The css class used on days that have events.
Type: String
Controls the CultureInfo instance that represents information about the culture of this calendar.
Type: String
Controls the separator string that will be put between start and end months in a multi-view title.
Type: String
Controls the format string that is applied to the days cells tooltip.
Controls the display formats for the days of the week used as selectors.
FirstLetter
FirstTwoLetters
Full
Short
Shortest
Controls the value, indicating whether to render links to the embedded skins or not.
Type: Boolean
Controls whether the month/year fast navigation controls in the title section are enabled.
Type: Boolean
Used to allow multiple date selection.
Type: Boolean
Controls whether the navigation controls in the title section are displayed.
Type: Boolean
Enables the display of the Today Button within Fast Navigation.
Controls whether a selector for the entire MonthView will appear on the calendar.
Type: String
The column used as the end date for the event.
Type: String
The column used as the event title.
Type: String
Controls the name of the image that is displayed for the next month fast navigation control.
Type: String
Controls the text displayed for the fast navigation next month control.
Type: String
Controls the text displayed as a tooltip for the fast navigation next month control.
Type: String
Controls the name of the image that is displayed for the previous month fast navigation control.
Type: String
Controls the text displayed for the fast navigation previous month control.
Type: String
Controls the text displayed as a tooltip for the fast navigation previous month control.
Type: String
Specifies the day to display as the first day of the week on the calendar.
Default
Sunday
Monday
Tuesday
Wednesday
Thursday
Friday
Saturday
Type: Number
Controls the column index where the focused day within the calendar will be positioned inside a multi view area.
Type: Number
Controls the row index where the focused day within the calendar will be positioned inside a multi view area.
Type: Number
The height of the calendar, measured in pixels.
Type: String
Controls default path for the grid images when EnableEmbeddedSkins is set to false.
Type: String
Controls the predefined pairs of rows and columns.
Layout_14columns_x_3rows
Layout_14rows_x_3columns
Layout_21columns_x_2rows
Layout_21rows_x_2columns
Layout_7columns_x_6rows
Layout_7rows_x_6columns
Type: Number
Controls the count of columns to be displayed by a multi month calendar.
Type: Number
Controls the count of rows to be displayed by a multi month calendar.
Type: String
Controls the name of the image that is displayed for the next month navigation control.
Type: String
Controls the text displayed for the next month navigation control.
Type: String
Controls the text displayed as a tooltip for the next month navigation control.
Type: String
Controls the name of the image that is displayed for the previous month navigation control.
Type: String
Controls the text displayed for the previous month navigation control.
Type: String
Controls the text displayed as a tooltip for the previous month navigation control.
Type: String
The text displayed on the OK button within Fast Navigation.
Type: String
Controls the orientation (rendering direction) of the calendar.
RenderInRows
RenderInColumns
Type: String
Controls the image displayed for the row header element.
Type: String
Controls the text displayed for the row header element.
Type: Date
Controls the currently selected date.
Type: Boolean
Controls whether or not column headers will appear on the calendar.
Type: Boolean
Controls whether or not row headers will appear on the calendar.
Type: Number
Controls the count of columns to be displayed by a single calendar.
Type: Number
Controls the count of rows to be displayed by a single calendar.
Type: String
The skin to use when rendering the calendar.
Black
Default
Forest
Hay
Office2007
Outlook
Simple
Sunset
Telerik
Vista
Web20
WebBlue
A sample of each is shown here:
Type: String
The column used as the start date for the event.
Type: String
Controls the horizontal alignment of the calendar title.
Center
Left
Justify
NotSet
Right
Type: String
Controls the format string that is applied to the calendar title.
Type: String
The text displayed on the Today button within Fast Navigation.
Type: String
The URL of the page to go to when a user clicks on a day inside the calendar. The URL will automatically append the selected date.
Type: Boolean
Controls whether to use the days of the week.
Type: Boolean
Controls whether to use the number of the week.
Type: String
Controls the image displayed for the complete selection element in the view selector cell.
Type: String
Controls the text displayed for the complete selection element in the view selector cell.
Type: Number
The width of the calendar, measured in pixels.
Example:
<MCSetup>
<Setup>
<ShowRowHeaders>False</ShowRowHeaders>
<Skin>Inox</Skin>
<EventTitle>Title</EventTitle>
<StartDate>Start Time</StartDate>
<EndDate>End Time</EndDate>
<URL>http://site1.com/Calendar.aspx?CalView=dayview&CalDate=</URL>
</Setup>
</MCSetup>
Use this property convert fields collected from the external XML from a string to a different type.
Example:
<Convert>
<Column>
<ColumnName>Start Date</ColumnName>
<ColumnType>System.DateTime</ColumnType>
</Column>
<Column> </Column>
</Convert>
The name of the column you want to convert.
The System Type you want to convert the column to.
Options:
System.Boolean
System.Byte
System.Char
System.DateTime
System.Decimal
System.Double
System.Int16
System.Int32
System.Int64
System.SByte
System.Single
System.String
System.TimeSpan
System.UInt16
System.UInt32
System.UInt64
TableName (Optional) String
The name of the table which contains the column to convert. The TableName comes from the Table node used in the XML. For instance if your xml looks like <Data><Title>Hello</Title></Data><Data><Title>World</Title></Data> the name of your table is Data.
Controls the bold effect of days that have events on the Mini Calendar.
Example:
<style>.CWCalBoldDays {font-weight: bold;}</style>
When enabled, this property forces information to be passed into the page a post request, rather than a get request. This disables the ability to add ?Parameter=Value to the page.
When enabled, this property will pass page parameters onto the page specified in the "URL To XML" property. This supports the Common Use Variables stated at the beginning of this help topic. You must encode the < and > symbol when using the parameters (e.g., < < and > >).
Example:
<PassThrough>
<Pass>
<PTType>get</PTType>
<PTRequest>SearchString</PTRequest>
<PTName>SearchString</PTName>
<PTDefault>[Me]</PTDefault>
</Pass>
</PassThrough>
The default text that will be sent to the page from which data is being requested, if the parameter is not passed into the page.
The name of the parameter to be passed onto the page from which data is being requested.
The name of the parameter being received by the page.
Controls the type of pass through. Use "post" to store the parameters in the header of your request, or "get" to store them in the URL.
Options:
post
get
The URL to the data source that the grid will be data bound to. This property also supports the Common Use Variables stated at the beginning of this help topic.
Default: empty
Example:
http://domain.com/GridDataSources/Tasks
<%SiteURL%>/GridDataSources/Tasks