Fullcalendar : Display two month from today - fullcalendar

I'm using full calendar with timeline view and from now I display 2 months ( june-july or september-october)
I would like to display two month from today's date :
Ex: Today : 05/09/2018
I want to have the september month and the october month
But if we are in october i want to have october and november instead of november-december
I don't know if I'm clear in my question
Thanks

Related

Fullcalendar: Is it possible if I would like to display today in the first cell of calendar in month view

I'm using the fullcalendar v4 and angular 8.
As current calendar feature, the month view always show the range of date in the month which is showing, it might have some date of previous month or next month due to 30 or 31 days for a month.
I would like to move today date to first cell of month view.
For example:
Today is 16 Dec 2020, so i would like the month view should start at 16 Dec 2020 and end at 16 Jan 2021 ( it means the 16 Dec 2020 would be at the first cell of calendar
If you are talking about Full Calendar V4, then you should set showNonCurrentDates: false. It hides previous and next month's days and also does not pass the previous/next month's dates in the events URL.

Fullcalendar Year View other than January to December

Does anyone know a way to base a Fullcalendar Year View with a different span of dates?
A typical US school Year is from July 1st thru June 30th of the next year. I would like to display it that way when using a year view. Currently Fullcalendar displays a Jan-Dec calendar year which I can totally understand.
I have tried setting the year in the listYear view, I have tried setting the validRange to
validRange: {
start: '2019-07-01',
end: '2020-06-30'
}
John

How to hide all year in datepicker except a year before today in ext.net

I have a problem with datepicker (datefield component) using ext.net, so in the datepicker that i use is only show month and year, however i can't eliminate (hide mode, not disable) another year which I don't want displayed in the selection.
The datepicker :
As you can see in that image above, i only use month and year but i can't figured out how to hide or remove the other year (only year) except this year and a year before now.
So the expected result shoud be in the year picker only show 2018 and 2019 because this year is 2019 and a year before now is 2018.
The code that i implement in in .aspx :
<ext:DateField runat="server" ID="datePicker1" Type="Month" Format="Y" AnchorHorizontal="50%" ></ext:DateField>
Please help.

procedure to convert the dates in ms access(vb code requir

i have four forms namely file status , load file, reconciliation, and reports.
Reconciliation form has 2list boxes.. namely fiscal year and fiscal month. In that we have to choose for eg say i chose fiscal year 2012 and month as 1, then when i click open the reports form i have reports in there which displays information as per the year and the month.
what my requirement is in this report it displays fiscal year as i have chosen in the first step. But i do not want it because fiscal year 2012 and fiscal month 1 actually corresponds to actual year 2011 and month 10 i . e October. i want this to be displayed over there.
IF the corresponding Calendar Month/Year is always the same period behind, then a simple calculation could be done:
Format(DateAdd("M",-3,Format([FiscalPeriod]&"-01","ddddd")),"MMMM YYYY")
-OR-
Format(DateAdd("M",-3,Format([FiscalYear]&"-"&[FiscalMonth]&"-01","ddddd")),"MMMM YYYY")
If it's not, then You'll need a lookup table for each Fiscal Period and it's related calendar Month. Then have that value looked up on Your form using Dlookup() and have the report reference the lookup field instead of the List Boxes.
From the Access Help files:
DLookup(expr, domain [, criteria] )
Sample:
=DLookup("[ProductName]", "Products", "[ProductID] =" & Forms![Order Details]!ProductID)

FullCalendar "Calendar" Month View Starting from Current Day

I have a need to use the FullCalendar plugin's month view, but with a small twist... I need the month view to be a calendar month (4 weeks) from the currently selected date, not a month proper (Jan, Feb, etc). In other words, I need the top left column to be the currently selected date, with the calendar rendering 4 weeks after that in month view.
Something similar to what is provided by thefirstDay property in agendaWeek view is close to what I am after. firstDay only sets the day of the week though, not a specific date within the month as the first day.
Try
firstDay: new Date().getDay()
in the parameters.
If you're going to show a Thursday in the upper left hand corner then what you've got isn't a calendar. It's a table data.
FullCalendar's firstDay is just for switching between starting on a Monday (European style) and starting on a Sunday (US style).

Resources