ComponentOne Wijmo Open for Juice UI
Wijmo Open for Juice UI Extender Controls / WijCalendar / WijCalendar Task-Based Help / Displaying Multiple Calendars
In This Topic
    Displaying Multiple Calendars
    In This Topic

    You can display more than one calendar by setting either the MonthCols or MonthRows property to an integer value greater than one. The MonthCols property determines the number of month view columns and the MonthRows property determines the number of month view rows.

    The MonthCols and MonthRows properties can be used on the client side like the following:

    Displaying Multiple Calendars in Design View:

    To display multiple calendars in design view, follow these steps:

    1. Select View | Properties Window in the Visual Studio menu.
    2. Click the drop-down list at the top of the Properties window and select Panel1_WijCalendar.
    3. Enter 2 next to the MonthCols property and enter 2 next to the MonthRows property.

    Displaying Multiple Calendars in Source View:

    To display multiple calendars in source view, click the source tab and add the following code in your source file:

     <cc1:WijCalendar ID="Panel1_WijCalendar" runat="server"
    
                DisplayDate="04/23/2012 16:38:24" MonthCols="2" MonthRows="2"
    
                TargetControlID="Panel1" TitleFormat="MMMM yyyy">
    
     </cc1:WijCalendar>
    

    This topic illustrates the following:

    The C1Calendar displays a 2 row, 2 column calendar.