tags:

views:

65

answers:

1

Hi all,

I am new to JQuery FullCalender(http://arshaw.com/fullcalendar/). I need to show only two weeks of a month in the page (I am using ASP.NET MVC framework).

Can i show only two weeks instead of full month ?

Appreciate if some useful links provided :-)

Thanks in advance.

+2  A: 

Check this page: http://arshaw.com/fullcalendar/docs/triggered-actions.php

Scroll down to view object. There are two properties -

visStart: Date

The Date of the first visible day of the view. In month-view, this value is often before the 1st day of the month, because most months do not begin on a Monday. In week and day views, this value will always be the same as start.

visEnd: Date The Date of the day after the last visible day (because it is exclusive like end).

Aseem Gautam