ComponentOne Calendar for ASP.NET Web Forms
Task-Based Help / Navigation Tasks / Navigating the Calendar Using the Outer Navigation Calendar Buttons
In This Topic
    Navigating the Calendar Using the Outer Navigation Calendar Buttons
    In This Topic

    The outer navigation buttons represent the double arrow previous and next buttons. Set the NavButtons property to quick to show the outer navigation buttons.

    The QuickNavStep property applies to the outer navigation buttons. The default value for this property is set to 12 which means that clicking the previous or next navigation button navigates every twelve calendar months.

    In Design View:

    To navigate every three calendar months using the outer navigation buttons, complete the following steps:

    1. Add a C1Calendar to your Web form.
    2. In C1Calendar's Properties window, click on the drop-down button in the NavButtons property and select Quick.
    3. Set the QuickNavStep property to 3.

    In Source View:

    To write code in Source View

    <cc1:C1Calendar ID="C1Calendar1" runat="server" NavButtons="Quick"
            QuickNavStep="3">
        </cc1:C1Calendar>

    This topic illustrates the following:

    Click on the Quick Next button to jump 3 calendar months ahead:

    See Also