Posts tagged “jquery”

FullCalendar Resource Day View Bug

Thanks to Rachel Z., who pointed out a bug in the FullCalendar Resource Day View. In the resource day view, if one moves an event from one resource to another resource and wants to revert the move, the event object did not contain the original resource id.

jQuery Dynamic List

This is a nice little jQuery plugin that allows the ability to add and delete a row. It’s nothing special compare to hundreds of similar javascript widgets out there except that it works nicely with back-end frameworks such as Spring MVC’s data binding.

FullCalendar Resource Day View Update

This is an update to the previous post named jQuery FullCalendar with Resource Day View. I added support for JSON feed URL for the resources option. You can now do this: $(’#calendar’).fullCalendar({ header: { left: ‘prev,next today’, center: ‘title’, right: ‘resourceDay’ }, resources: ‘resources.json’, events: ‘events.json’, … }); Lastest code at github. [Jan 29, 2013] [...]