Issue 871: Year View with 12 Mini-Calendars
Status:  ExportedToGithub
Owner: ----
Closed:  Aug 2015
Reported by kebin....@gmail.com, Mar 28, 2011
The attach file is a year view sample.
I made it by fullcalendar version.


fullCalendar15.rar
133 KB   Download
Apr 2, 2011
Project Member #1 adamrs...@gmail.com
tried this out, this is really cool! i can't say it will be part of an official release any time soon, but i will definitely hold on to this, and think about what to do next. thanks for your work!
Summary: Year View with 12 Mini-Calendars
Status: MaybePlugin
Apr 3, 2011
Project Member #2 adamrs...@gmail.com
 Issue 823  has been merged into this issue.
Apr 3, 2011
Project Member #3 adamrs...@gmail.com
 Issue 654  has been merged into this issue.
Apr 15, 2011
#4 p.stud...@gmail.com
Excellent. This is really good. Had to comment and say thanks!
Jun 25, 2011
#5 corin.la...@gmail.com
This would be a valuable addition to fullCalendar, please merge :)

It has issues of it's own: moving an event (from a different view) doesn't update the year view; and it would be nice to be able to drill down by clicking month's name.

Keep up the great work!
Jun 26, 2011
#6 jmm.seas...@gmail.com
I dig
Jul 19, 2011
#7 diog...@gmail.com
Another bug is allday events spanning for more than 1 day.
Aug 9, 2011
#8 dalibor....@gmail.com
Hello, thanks for this great version. Anyway I found a bug in there. If you change a year, then classes of each day remain same as in the previous year, so events are not drawn on them. I'm attaching a patch which should solve it.
fullcalendar.patch
2.2 KB   View   Download
Aug 28, 2011
#9 tdlu...@gmail.com
Great! Is there a way to make this work with a JSON eventSource so that you can set the background/foreground of each event rather than it being hard coded to fc-year-have-event? Also for it to show the start and end date if the event has multiple days to it, on the year view?

Awesome contribution, I hope it makes it into the full release
Sep 28, 2011
#11 adam.log...@gmail.com
This is Awesome. Really would like to see this added to the full version.
How can I make it so that events showing on the year view are clickable (either shows the month view or day view).
Or at minimum the ability to drill down to the desired month view (as per comment #5 above)
Great Work all involved!
Oct 4, 2011
#12 nicolas....@gmail.com
Very Good work !

But i can't click on day and it's so impossible to edit the "year view".
I read the code, there is dragging and clicking callback...
i don't understand !

please someone to help me ?!
Dec 7, 2011
#13 ivicakr...@gmail.com
This is great!!
Using fullCalendar15.rar patch (fullcalendar.js file) in year view, multi-day events display only first and lasat day as marked, and non of the days between first and last day.show any events (you can also see this problem in demo file - just check multiday events).

I believe by adding an extra classes "fc-first" and "fc-last" to <td> with events should resolve this problem.
Question is how to add above classes to td (e.g. "<td class="fc-widget-content fc-day-2011-11-14 fc-year-have-event">")?

By looking at fullcalendar.js (for view calendar) I'm not sure what has to be changed in in function "updateCells" and/or function "renderDaySegs" to add these classes to td?

Thanks and Regards,
I


Jan 9, 2012
#14 loui.a...@gmail.com
Am a Newbie and i just wanted to know how to implement the year view provided for download on this issues. Specifically this download fullCalendar15.rar


Feb 3, 2012
#15 wilber.j...@gmail.com
Supporting clicks in the YearView:

This is not perfect, nor tested exhaustively, but if you're hoping to get click events working this may help.

1. In BasicYearView.buildSkeleton around line 2142, where the <td> for each day is added, add an additional "fc-day" class (no suffix).

		s +="<td class='fc- " + contentClass + " fc-day fc-day" + dayStr + "'>" + // need fc- for setDayID

2. Select these elements at the end of the function (dayBind was previously commented out).
		
		var dayCells = table.find(".fc-day");
		dayBind(dayCells);

3. Update dayClick() to extract the date from the original fc-day-yyyy-mm-dd class.

	function dayClick(ev) {
		if (!opt('selectable')) { // if selectable, SelectionManager will worry about dayClick
			
			// Find the correct classname, and extract the date
			var pos = this.className.search(/\bfc\-day-(\d\d\d\d-\d\d-\d\d)\b/);
			var datestr = this.className.substr(pos + 7, 10); 
			
			// Convert to a date
			var year = parseInt(datestr.substr(0, 4));
			var month = parseInt(datestr.substr(5, 2)) - 1; // January=0
			var day = parseInt(datestr.substr(8, 2));
			var date = new Date(year, month, day);

			trigger('dayClick', this, date, true, ev);
		}
	}

Many thanks for this plugin,
P.
Feb 7, 2012
#16 vic...@gen72.com
Hello, I have tested yearview, applied patch and modify code to support clicks but I get this error:

"headCells is not defined"

headCells.each(function(i, _e) {   (line 2399)

Any help?
Thanks
Feb 18, 2012
#17 adi.shou...@gmail.com
I tried to use above mentioned code to have click event in year view. But I am having the same 'headcells' undefined error.
Click support in year view would be great!!
Feb 20, 2012
#18 adi.shou...@gmail.com
When you change the event source and the events are re-fetched from new source. In year view it shows Events from new source as well as events from older sources.
It just need to clear all the events before showing events from any source.
Any help/suggestion would be appreciated
Mar 16, 2012
#19 bizer...@gmail.com
If you are getting the error:

"headCells is not defined"

with

"headCells.each(function(i, _e) {   (line 2399)"

you can do a simple patch by adding two lines to the problematic function to check if headCells is undefined:

coordinateGrid = new CoordinateGrid(function(rows, cols) {
		var e, n, p;
                if(headCells === undefined)
                    return;
		headCells.each(function(i, _e) {


Apr 9, 2012
#20 EduardoL...@gmail.com
Hi, how and where to post my code that implemented FullCalendar?
I'm sorry for the english.
Apr 16, 2012
#21 eler...@gmail.com
Great work - thank you!

Everything works fine.  But now I want a second event in another color. There are never two events on one day.  Do you have any idea?
Apr 17, 2012
#22 laurent....@gmail.com
hello !!
I want to know, if it is possible to implement this option for the plugin spip ???
Apr 25, 2012
#23 dmcoo...@gmail.com
Has anybody made an attempt at implementing multi-day events?  So defining an event with "start" and "end" values on different days would result in an event that spanned as many days as necessary between those two attributes.
May 6, 2012
#24 remy...@gmail.com
How to display event title in yearview?It shows only the event date in blue color..

Jun 10, 2012
#27 mateusz....@gmail.com
Just to add a note to comment number 15: the parseInt method should be used with two parameters, the second one specifying a radix (the numerical system to be used), e.g.:

var year = parseInt(datestr.substr(0, 4), 10);

Without the second parameter months after July return wrong date.
Jul 8, 2012
#28 dave.mil...@gmail.com
Great addition. To use the eventRender approach at http://stackoverflow.com/questions/3366654/update-an-event-by-dropping-an-external-event for making an event droppable I seems to require a newer version of jquery-ui than packaged in the original download here (fullcalendar15). The following works:

jquery-ui-1.8.12.custom.css
Jul 8, 2012
#29 dave.mil...@gmail.com
RE: comment 28 (mine) three files are required:

jquery-ui-1.8.12.custom.css
Jul 8, 2012
#30 dave.mil...@gmail.com
Re: comment 28: the two other files were not included previously (despite being sent):
jquery-1.5.2.min.js
Jul 8, 2012
#31 dave.mil...@gmail.com
RE: comment 28: the third file is below. I guess only one will be included per post - sorry.
jquery-ui-1.8.12.custom.min.js
Aug 20, 2012
#32 chris.fa...@gmail.com
How would I merge the year view version with an existing implementation of the most recent version of fullcalendar that has some of my own edits built in?

Should I load this year-view version as a separate lib, or is there a way I can merge into a single source?

The attached .rar does not include the fullcalendar source, it is the output of the build, so, it seems like I'd need to load it separately. Is that correct?

Oct 5, 2012
#33 rpicc...@software4u.it
Hi,
I've tried to make the year view days clickable, but I can't.

I've used the rar then applied the patch and the code on comment 15 but the events are still unclickable...what am I wrong ?!?

You can download js code I'm using from this url (the agenda-views.html is the original) :

http://nero.joomlafree.it/docs/fullcalendar.zip

Please help me!!! Maybe some of yours can compare his own fullcalendar.js code with mine and tell me the difference...

Thank you in advance!
Oct 7, 2012
#34 egugli2...@gmail.com
same thing happens to me
I have no error in the JS console but nothing happens do Clickk
Someone could achieve this, it?
Oct 10, 2012
#35 rpicc...@software4u.it
up!

any chance to get help from anyone here ?!?

Is there anyone who could post his complete working version of the code please ???

Thank you again...
Oct 30, 2012
#36 chann...@gmail.com
This is great, but 'eventClick' event is not working .anyone can help me
Nov 13, 2012
#37 steffers...@gmail.com
Anyone got a fix to display the events on the year preview the same way as the month view?
The current code is not showing the end date.
Nov 14, 2012
#38 dalibor....@gmail.com
Hi all, 
I've found out that year view doesn't care about firstDay setting and always starts from Sunday. I just made some modification to support firstDay settings. 

in buildSkeleton function in year view should be around line 2175

		for(var mi=0; mi<12; mi++){
			di.setFullYear(di.getFullYear(),mi,1);
			df = cloneDate(di);
			di.setFullYear(di.getFullYear(),mi,1-di.getDay()+firstDay);

			if ( di > df ) {
				di.setFullYear(di.getFullYear(),mi,di.getDate()-7);
			}

and also change updateCells function around line 2262
		subTables.each(function(i, _sub){
		var d = cloneDate(t.curYear);
		d.setFullYear(d.getFullYear(),i,1);
		var df = cloneDate(d);
		d.setFullYear(d.getFullYear(),i,1-d.getDay()+firstDay);

		if ( d > df ) {
			d.setFullYear(d.getFullYear(),i,d.getDate()-7);
		}

Nov 16, 2012
#39 steffers...@gmail.com
Hi All,

I made some improvements on the calendar adding some of the ideas above and some of mine, including the month click from the year view. Here you can find the complete pack working:
http://www.it-design.es/libs/fullcalendar.rar

I still need help to make the events display exactly the same on the year preview as the month preview.

Nov 19, 2012
#40 rpicc...@software4u.it
Hi Stef,

I’ve downloaded and run your code, but it seems there’s still something “broken”. When I click from a day with events configured on from year view, all the month days (in year view) change color (become red) but the “month view” doesn’t activate.

I would like to click on a day with events from year view and then the user should be redirected to the month view...

Can you help me please ?

Than you!

Riccardo Piccini
Analisi e Sviluppo Software
SOFTWARE 4U SRL
rpiccini@software4u.it


From: fullcalendar@googlecode.com 
Sent: Friday, November 16, 2012 8:15 PM
To: rpiccini@software4u.it 
Subject: Re:  Issue 871  in fullcalendar: Year View with 12 Mini-Calendars
Nov 21, 2012
#41 steffers...@gmail.com
I just re-uploaded everything. It was missing a file.
Just run the html file inside the demo folder so you can see how everything works.

I still need some help with the year view if someone can give me hand with that.
Nov 21, 2012
#42 rpicc...@software4u.it
Thank you Stef!

Do you know reason why I’m getting an “undefined” instead of “week” and “day” label when I activate these kind of view too ??

I still need some help with the year view if someone can give me hand with 
that. 
<<

Anyway, let us know which kind of help you need on year view...it seems it’s already working properly...what do you want to do ?

Bye,

Riccardo Piccini
Analisi e Sviluppo Software
SOFTWARE 4U SRL
rpiccini@software4u.it


From: fullcalendar@googlecode.com 
Sent: Wednesday, November 21, 2012 12:27 PM
To: rpiccini@software4u.it 
Subject: Re:  Issue 871  in fullcalendar: Year View with 12 Mini-Calendars
Nov 21, 2012
#43 steffers...@gmail.com
The year view only display the event start date with 1 color all hardcoded.
I need that to be exactly the same as the monthly view(1 line with different colors) or several lines if there's more than 1 event on the same date. 
Just the line without the event name.

Mmmmm, it might be some line commented on the js generating those undefined.
Nov 21, 2012
#44 rpicc...@software4u.it
Hello Stef,
Are you sure of what you want to achieve?

Keep in mind that in one day can potentially be present 10 different events or more ... how could you to represent them all in a space as small as a single day in the year view?

I believe that just as it is set now, with a color that is hard-coded to be a good solution: the color more pronounced on the day indicates that by that time will surely find one or more events, then click on the day and go to see what the situation is.

The only other solution I thought is this one: create, inside the single day-DIV, as many "mini-DIV" (with background color same as the single event) as events stored for that day... but I think it's pretty hard job to do and you can’t have the guarantee of a good result ...

Try to think back and see if what you want to do is really necessary ...

See you soon!

Riccardo Piccini
Analisi e Sviluppo Software
SOFTWARE 4U SRL
rpiccini@software4u.it


From: fullcalendar@googlecode.com 
Sent: Wednesday, November 21, 2012 5:14 PM
To: rpiccini@software4u.it 
Subject: Re:  Issue 871  in fullcalendar: Year View with 12 Mini-Calendars
Dec 7, 2012
#45 ddo...@gmail.com
Thanks for this!, fantastic work
Dec 10, 2012
#46 kongar...@gmail.com
changeview to year not working

Feb 9, 2013
#47 faxii.m...@gmail.com
Hi everyone,
I find this topic today, thanks a lot for this work !
I needed to add multi day event color and i think i find the problem.
formatDate function could not parse the date in parameter, we have just to pass the sd parameters

//---------
Line 2677 to 2681

Replace while loop by:

while(sd.getTime() < segs[i].end.getTime()){
    rowsTd.filter('.fc-day-'+formatDate(sd, 'yyyy-MM-dd')).addClass('fc-year-have-event');
    addDays(sd,1);
}
//-------

Hope this help, sorry for my bad english :)

Feb 20, 2013
#48 nira.kha...@gmail.com
I am new to jquery, I still need some help with full calendar year view ,can anybody upload source having all above mentioned changes/fixes?
Mar 13, 2013
#49 Ustyuzha...@gmail.com
if you want use firstday simple replace in fullcalendar.js
in function BasicYearView in buildSkeleton next rows:

for (i=0; i<colCnt; i++) {
     s +="<th class='fc-year-month-weekly-head'>"+ localWeekNames[((firstDay+i)%7)]+"</th>";
}

and in function BasicYearView in updateCells next rows:

subTables.each(function(i, _sub){
var d = cloneDate(t.start);
d.setFullYear(d.getFullYear(),i,1);
d.setFullYear(d.getFullYear(),i,1-d.getDay()+firstDay);
Mar 25, 2013
#50 martian...@gmail.com
Hi all,

This patch is great. Thank you Kebin and of course all the authors of fullcalendar. I'm working on integrating this for use on edcaliber.com (site for teachers. Allows class scheduling).

I forked the repository on github and have been working on fixes and additions.
https://github.com/martiantim/fullcalendar/commits/master
We need to show individual events like steffers and Riccardo where discussing above so my plan is to make that an option.

I have also fixed the following bugs so far:
-don't show extra week if all days in the next month
-didn't handle opt('weekends') properly
-didn't handle changing the month dimensions properly (seems like this should be an option?)

We'd love to get this pulled back into master at some point. Any thoughts from the fullcalendar authors would be great. Happy to do cleanup (original patch has a lot of dead code) and changes to support new stuff that has come about since the patch was originally written.

Cheers,
Tim
Mar 26, 2013
#51 mrhjorts...@gmail.com
Hi!

Now I have managed to make fc to show year and monday first:)

But I still have problems with the clicking ability on year view...

Could it has something to do with the class finding on the row

var pos = this.className.search(/\bfc\-day-(\d\d\d\d-\d\d-\d\d)\b/);

???

And how to change colors in the cells in year view depending on the event being displayed??

Hoping fore some help!

Regards
Marcus
Jun 12, 2013
#52 aky...@gmail.com
Many thanks for this work. 

As mentionned before, there is a bug with multiple days events. Here is a fix : 

Within function renderDaySegs(segs, modifiedEventId), replace : 

rowsTd.filter('.fc-day-'+formatDate(segs[i].start, 'yyyy-MM-dd')).addClass('fc-year-have-event');

by : 

rowsTd.filter('.fc-day-'+formatDate(sd, 'yyyy-MM-dd')).addClass('fc-year-have-event');
Jun 18, 2013
#53 kneid...@gmail.com
is there a final version of this that can be easily setup? i am seeing so many versions and patches of this..

thanks!
Jun 21, 2013
#54 martian...@gmail.com
Hi all,

I've fixed some bugs and made some improvements to this patch. It's all on github at https://github.com/martiantim/fullcalendar. I'll send a pull request soon. We are enabling it on http://edcaliber.com monday (6/24/13) if you'd like to try it out without building.

Cheers,
Tim
Jun 24, 2013
#55 kneid...@gmail.com
Hi Tim

I just tried it out (took me a while to figure out that i need to add "year" the view options!)
and it looks great - cheer!

Jul 18, 2013
#56 eleco...@gmail.com
@ martian : Is-it possible to have a build version ?
thanks
Jul 19, 2013
#57 eleco...@gmail.com
OK. I've generated a compiled version but it doesn't work for me : css are ugly and I have a event not on the good day but on the top of calendar.

Jul 19, 2013
#58 martian...@gmail.com
Hi Eleco,

I'm sorry you're having issues. We've overriden a lot of the default styles on edcaliber.com to fit in with our site look and feel. I'm sure I missed something important with the default styles. Could you send me a screenshot of what you're getting? tim (at) edcaliber.com

Thanks,
Tim
Jul 24, 2013
#59 eleco...@gmail.com
Hi martian :)

Thanks you for your help. I will send you my url site. 

See you soon !

Jul 26, 2013
#61 eleco...@gmail.com
Hello,

The events's json file is ok in the demo/theme sample.
But les results is ko with the integration of year view in a joomla compoenent. I think the FC.js calculate the position from the body and not from the div's container.
Aug 13, 2013
Project Member #62 adamrs...@gmail.com
(No comment was entered for this change.)
Status: Discussing
Labels: Type-Feature
Aug 15, 2013
Project Member #63 adamrs...@gmail.com
 Issue 1287  has been merged into this issue.
Aug 18, 2013
Project Member #64 adamrs...@gmail.com
 Issue 1484  has been merged into this issue.
Aug 24, 2013
Project Member #65 adamrs...@gmail.com
 Issue 1758  has been merged into this issue.
Oct 25, 2013
#66 scoob.ju...@gmail.com
Does anybody know how to get it working in 1.6.4 version or even better, is anyone trying to achieve this? Do you need some help?
Oct 28, 2013
#67 pawelfat...@gmail.com
I have a problem with FirstDay event in 2013 on December start from second of decmber from monday. How fix this?
Oct 30, 2013
#68 buc...@gmail.com
Would really like this in v1.6.* form if anyone has made it work.
Dec 22, 2013
#70 amir.dre...@gmail.com
Thank you very much.
Just one note, the dragStart, dragStop are implemented for all views except the year view.
Is there a plan to add them?
Feb 8, 2014
#71 nick.bar...@msn.com
Great job, it's a big leg-up with my project. My app is an AngularJS single-page and I'm using the wrapper from https://github.com/angular-ui/ui-calendar

Been playing with the year view from http://epsy.ath.cx/fullcalendar-yearview/ and I've made some modifications so that the Prev/Next buttons move a month rather than a whole year which is more intuitive. Also, so the initial view is the current month e.g. Feb rather than Jan. I've tried drag-n-drop of events and these are working.

I don't know the status of this view given all of the updates. No doubt I'll be working through everyone's comments to get the features I need working. Noticed something about day clicks which I'll read.

Ideally, I'd like a multiple month view which was selectable from a button e.g. 3 months, 12 months. Also would be very nice so the Year title on-click opened a menu to select a particular year on a carousel (not essential).

Looks like the code needs some re-factoring somehow. A one month view is only a year view with one month chosen in the options. Really, it's not a view, all the other views could be made to support multiple months with the number of months shown selected from an option.

Maybe related to a 3-month view, got a bit confused with firstMonth and lastMonth options and couldn't find any documentation that related, what are they for?


As I say got some way to go to make sure it fits my needs wrapped in an AngularJS directive, maybe I'll be posting again.

fullcalendar.js
178 KB   View   Download
Feb 12, 2014
#74 gbest...@casamitger.com
Nice work nick, that's what i was looking for but i have just one problem with overlay days on every month, is there any way to disable them?
I'll attach a picture so you can see it.
Thanks again :)!
calendari_overlay.PNG
12.1 KB   View   Download
Feb 14, 2014
#75 tanguy.pruvot@gmail.com
dragStart, dragStop was implemented this morning... thanks for the report
Feb 15, 2014
#77 tanguy.pruvot@gmail.com
segments widths over two months should be ok now...
Feb 17, 2014
#78 gbest...@casamitger.com
Works like a charm, Thanks!!
Feb 17, 2014
#79 tanguy.pruvot@gmail.com
currently under work :
- hidden weekends with firstDay != 1 
- v2

other features to implement :
- week numbers
Feb 20, 2014
#80 das...@gmail.com
Any estimates when week numbers are ready? Thanks in advance
Feb 23, 2014
#81 tanguy.pruvot@gmail.com
its made, but its really hard to fix the hidden weekend feature :/
Feb 26, 2014
#82 das...@gmail.com
Thank you for the hard work you are putting into this.

My reasoning for asking for week numbers is because it is best pratice in the calendar world to have it there. For me clients running different rental business requires it / or do want it.
Feb 26, 2014
#83 das...@gmail.com
Where can i find the file with week numbers? Tnx
Feb 26, 2014
#84 tanguy.pruvot@gmail.com
On github, in file releases
Feb 26, 2014
#85 das...@gmail.com
Can you help me out with making a version ready with full year, week numbers? this whole github thing is really new for me!

Br,
Daniel
Apr 9, 2014
#88 nic...@rothmanconsulting.se
Hi there, 
Im wondering if it is possible to configure your code to display X months instead of a full year?

Greate work by the way!

Regards Nicals
Apr 10, 2014
#89 patrickw...@gmail.com
great feature! 

is there a way to change the length of day names in year view? 

I'd like to use dayNamesShortest instead of dayNamesShort

great work
Apr 28, 2014
#90 gopi4kas...@gmail.com
Brillant work ! Works like a charm, Thanks!!
Apr 29, 2014
#91 eleco...@gmail.com
Hello Tanguy,

It's the first time were all is OK ! Tanks a lot.

A little comportement : on the same line, you have three month and each month have the weeks. If in a day you have 5 events, the minicalendar is extended but not 2 others.

So VERY GOOD JOB !!

Capture.PNG
111 KB   View   Download
May 28, 2014
#92 rwp.bwo...@gmail.com
Hello. This is a great job!

Two things (I don't know if it's possible):

- How to set height on the year view?

- How to disable month clickable functionality on the year view? I don't want that users click on month names...

Is this possible to achieve?
May 28, 2014
#93 tanguy.pruvot@gmail.com
the height cant be set yet, there is a min-height by cell, but depends a lot on the usage of the calendar (in my case i can have 8 lines or more by day)

for the month link... that could be added but you can also do it easily with jQuery
Jun 1, 2014
#94 rwp.bwo...@gmail.com
Thank you, Tanguy.

I tried with preventDefault() but without success. It was that what you were suggesting?
Jun 6, 2014
#95 tanguy.pruvot@gmail.com
i was suggesting something like jQuery('.fc-year-monthly-name a').removeAttr('href');

here is my new demo url : http://epsy.linuxd.net/fullcalendar-yearview/demos/year.html
Jun 7, 2014
Project Member #96 adamrs...@gmail.com
 Issue 2115  has been merged into this issue.
Jun 9, 2014
#97 rwp.bwo...@gmail.com
Hi.
Thank you for your answer but what you suggested didn't work. So I replaced <a> tag for a <label> tag.

What I did:
$('#myDiv').find('.fc-year-monthly-name a').replaceWith(function() {
      return $('<label />', {html: $(this).html()}).css({color: 'black', 'font-weight': 'bold', 'font-size': '15px'});
});
Jul 6, 2014
#98 donaldla...@gmail.com
I'm not seeing the fc-header-left or right.  The html code is there but they don't show up on the page.  The demo shows just fine and I copied and pasted the demo code into my page plus I used the exact same css and fulcalendar.js files as the demo.

This fork is exactly what I needed for a rental booking site but I gotta figure out why the buttons aren't showing.
Jul 7, 2014
#99 tanguy.pruvot@gmail.com
did you download it on github ? the rar file in the thread is not related


2014-07-07 5:34 GMT+02:00 <fullcalendar@googlecode.com>:
Jul 7, 2014
#100 donaldla...@gmail.com
No, I actually downloaded the .js and .css from the example from entry #95.  In that example everything shows correctly so I figured if I used the exact same files it should work for my.  It just seems so odd that the code would look the same yet on one page it works and the other it doesn't.  I am using Codeigniter but the page should render the same.

I will try using the github files.
Jul 7, 2014
#101 donaldla...@gmail.com
I grabbed the file from github and installed it in a working Fullcalendar implementation I have and it works perfectly.  I will try the Github version when I get home.

Is this ever going to be merged into the official Fullcalendar?
Jul 7, 2014
#102 tanguy.pruvot@gmail.com
Not so sure... it should be rewrote when v2 will be stable
Le 7 juil. 2014 16:33, <fullcalendar@googlecode.com> a écrit :
Jul 7, 2014
#103 donaldla...@gmail.com
Whatever my issue was it's resolved now.  It had something to do with my links to the .js and .css files.  I never did figure out which one was the bad line but it's working as expected now.

This is something the official version really, really needs.  It's a very good plugin as is but this would make it great.
Jul 21, 2014
#104 jenje...@gmail.com
Great enhancement to the fullcalendar plugin! How can I modify this to render fiscal year instead of calendar (i.e., September to October)? TYA
Jul 21, 2014
#105 tanguy.pruvot@gmail.com
tx, see scholar sample
Jul 23, 2014
#106 jenje...@gmail.com
got it... tx!
Aug 6, 2014
#107 sadom...@gmail.com
Hello.
Thanks for the improvement in fullcalendar plugin.
Will the upgrade to version 2.0?
Aug 6, 2014
#108 tanguy.pruvot@gmail.com
Not for the moment ;)
Aug 27, 2014
#109 donaldla...@gmail.com
Is there an event similar to dayRender on the full year view?  I know the days get rendered but dayRender only triggers when in Month view.
Aug 28, 2014
#110 tanguy.pruvot@gmail.com
i didnt added this trigger indeed...
Sep 6, 2014
#113 anjjana....@gmail.com
Is there a way to have year view in fullcalendar2.1.1 version?
Sep 6, 2014
#114 tanguy.pruvot@gmail.com
not for the moment, im busy on other projects and 1.64 works well
Sep 9, 2014
#115 balajimo...@gmail.com
Hey Tanguy,
I appreciate your effort on getting this plugin to such a great level. I have been using this plugin for one of my school project and it has been working like a charm so far. I understand that you have been busy with other projects but I would really appreciate if you can add the basic year view to the latest version 2.1.1.

Thanks.
Sep 11, 2014
#116 Rabadiya...@gmail.com
Hi Tanguy,
You are doing good work. it really help full for many people.
we need basic year view in 2.*.
how we can add that one.
thanks
Sep 19, 2014
#117 ocio.mig...@gmail.com
Event Background color on year view:

function renderDaySegs(segs, modifiedEventId) {

...

rowsTd.filter('.fc-day-'+formatDate(sd, 'yyyy-MM-dd')).css('background-color',segs[i].event.color);

...
Sep 29, 2014
#118 anjjana....@gmail.com
Hi, I want to have year view in fullcalendar2.1.1. can anyone help?
Oct 22, 2014
#119 rijojoh...@gmail.com
Hi Tanguy,

Thanks for amazing work. This has really simplified my work. Is there a simple way for adding a quarter view to this? 

Regards,
Rijo John
Dec 17, 2014
#121 eleco...@gmail.com
Hello Tanguy,

I've a pb when the firstDay=Monday. When firstday =Sunday it's good.


Can you help me ?

Mau
year_view_error.JPG
73.4 KB   View   Download
Dec 17, 2014
#122 tanguy.pruvot@gmail.com
for the link its now : http://epsy.linuxd.org/fullcalendar-yearview/demos/

For your problem, never experienced that, and im french with mondays first too
Dec 17, 2014
#123 eleco...@gmail.com
OK. i'm continue my searchs :)

Je regarde car çà m'étonne aussi ce comportement :/
Manu
et merci pour le lien
Dec 17, 2014
#124 eleco...@gmail.com
OK I'found it et kill it.

The origine : I defined my firstDay like a char firstDay:'1'
so in your code, when you compare i to firstDay+7 it will be interpreted like 17...

Thanks for your reply :)

Manu
Dec 19, 2014
#125 patcouc...@gmail.com
Is this on v1?  If so when will it get updated to v2?  

Finally why is this not part of the main release yet?
Jan 7, 2015
#127 tanguy.pruvot@gmail.com
Currently working on the v2...

i accept paypal gifts on this email tanguy.pruvot@... gmail for private publishing, as i didnt received anything for the first version except some thanks ;)

Feb 9, 2015
Project Member #128 adamrs...@gmail.com
 Issue 2431  has been merged into this issue.
Apr 2, 2015
#129 ziii...@gmail.com
Hello all,
I noticed an issue while trying to display future events on year view : Januray, February, March are OK, but the next ones are displayed on the first 3 months instead of the right month :( It seems it should add more px if it comes to another block (1 block equals for me 3 months displayed in a row)

Does anyone have the same issue ?
Apr 3, 2015
#130 tanguy.pruvot@gmail.com
I just published the Yearview v2.2.5
Apr 3, 2015
#132 sadom...@gmail.com
thank you so much!!!
Apr 13, 2015
#133 brendane...@gmail.com
It's slow to render the year view. Is there any way I can show a blockui while the client responds? is there any other way to do this?
May 6, 2015
#136 dkur...@corevalue.net
Got problems setting the height of the year view.
E.G. Trying to set the height of 300px, the fullcalendar reports 300px after that, but the actual size is much larger (in my case 508px).
Is there a possibility to fix the issue?
Screenshot 2015-05-06 14.55.30.png
235 KB   View   Download
Screenshot 2015-05-06 14.53.42.png
249 KB   View   Download
May 19, 2015
#137 sday...@gmail.com
Yearview, exactly what I was looking for!  nice work to go along with the fantastic work of FullCalendar.  I hope they get merged.  
Jun 17, 2015
#138 hans.f...@backbone4media.com
Great work. 
But, I cannot get the lang option to work. 
When showing the year view, the lang: 'fr' option is not used, instead it uses the last included language file. This does not work in a multi language implementation. 
Month, day and week views work fine, just not the year view. Bug?
Cheers!
Jun 17, 2015
#139 tanguy.pruvot@gmail.com
http://epsy.linuxd.org/fullcalendar/demos/year-french.html

2015-06-17 22:19 GMT+02:00 <fullcalendar@googlecode.com>:
Jun 17, 2015
#140 hans.f...@backbone4media.com
Let me clarify - (I actually tried to delete my first comment and upload two other images but that does not work in this forum, using Chrome)  
In my code the lang: 'en' option is set. But in the attached image it uses French for the smaller 12-month calendars but English elsewhere. Bug?
Cheers!
Publishing Schedule.png
90.2 KB   View   Download
Jun 17, 2015
#141 tanguy.pruvot@gmail.com
i dont know, and its german ;) sorry, i'm busy on other open source projects
Jun 17, 2015
#142 hans.f...@backbone4media.com
Sorry, I got the images confused, but here's the bug/not supported feature:
The lang: '(language abbreviation)' option is not used/not supported in year view. 
Instead fullCalendar uses the language in the last included language file. 
The documentation states it will use the last included language file, but only when the "lang" option is not set. 
This will not work in a multi-language environment where you include the language files you want, or use the "all" language file. 
Another options is to include only one language file dynamically, but I rather not for performance reasons.
Jun 17, 2015
#143 hans.f...@backbone4media.com
Fix this and I'll donate $30 - I'm stuck without the same language support as fullCalendar.
Jun 17, 2015
#144 tanguy.pruvot@gmail.com
ok, i will implement that.. and also maybe create a new branch based on a newer version
Jun 17, 2015
#145 hans.f...@backbone4media.com
That would be totally awesome!
Jun 17, 2015
#146 tanguy.pruvot@gmail.com
Pushed to my repo...

I accept bitcoins : 1QAyxsrgcixkxtC3yEyWfmfJoAJf9ihVKy
... else my paypal account is my email :p

Working on the new branch...
Jun 18, 2015
#149 guillaum...@gmail.com
@tanguy thanks a lot! It would be cool to be able to extract that into a simple plugin. 

Is there a lot of hooks missing in core to be able to achieve that?
Jun 18, 2015
#150 hans.f...@backbone4media.com
@tanguy - $35 coming your way. 
Thank you for working on this. =)
Jun 18, 2015
#151 tanguy.pruvot@gmail.com
thanks a lot... there is one last thing which is not translated correctly. its the popup with "+ N events".

If i remember right, adam fixed that in the 2.3.x
Jun 18, 2015
#152 tanguy.pruvot@gmail.com
@guillaume: its already like a plugin... in the source code point of view... 
Jun 19, 2015
#153 hans.f...@backbone4media.com
q: when a user clicks an event in the year calendar, I'd like to highlight all segments for the same event. Events often stretch over 7 days, causing events to be split into segments. How can I achieve that? 
Jun 19, 2015
#154 hans.f...@backbone4media.com
a: I'm sure there is a better way, but I did a workaround which works for me. 
1. Add a unique css class for each event
2. When rendering, even if the event stretches across weekends, the class is applied to all segments.
3. When user clicks a segment: 
$("." + calEvent.className).addClass('red');

When you drag an event the other segments, belonging to the same event, are hidden, so fullCalendar is aware of the other segments, but I have not found a ways to access them through the API.
Jun 22, 2015
#155 coda.a...@gmail.com
question: is it possible to have the year-view start from September, rather than January? I would want for Sep-August, to match the school year.

thanks!
Aug 7, 2015
#156 david.b...@googlemail.com
NICE!!! thats what iam searching for
Aug 21, 2015
Project Member #157 adamrs...@gmail.com
Discussion for this issue has moved to the following URL:
https://github.com/fullcalendar/fullcalendar/issues/1140

This is because Google Code is shutting down. Apologies if you are being pestered with these notifications. This is a one-time event.

Happy coding,
Adam
Status: ExportedToGithub
Oct 20, 2015
#158 E.Huq.b...@gmail.com
I want to firstDay setting and always starts from Friday in yearly view. When i change firstDay = 5; then change day but can't change date .. please help me