GitXplorerGitXplorer
M

activecalendar

public
5 stars
2 forks
0 issues

Commits

List of commits on branch master.
Unverified
80c9d710034b16b0b1225dd94f7aff4a68160231

Finally added David Lauzon's change.

committed 17 years ago
Unverified
b7f76c49df74bd15b813ccd321e23f96878c3609

A couple more tweaks for parameter passing.

committed 17 years ago
Unverified
98403187c036d793b1a5c680eb92f2fa442f43e1

Added a check for dateStatusFunc.

committed 17 years ago
Unverified
11078d07afb713b367dd3fe2754e7275f548f99f

Fixed a typo (delete_if! should be delete_if)

committed 17 years ago
Unverified
fc266c94c7da3d223fcb1eea673fc97bc81468b5

Changed the way setup options are handled, now any options that are passed in are automatically added to the Calendar.setup method, excluding:

committed 17 years ago
Unverified
bd4f1b9f034da443a66b1424f72cb0838c1470f2

Added a change that allows the programmer to override the name and id of the field. This change was suggested by Peer Allan.

committed 17 years ago

README

The README file for this repository.

Calendar

The calendar plugin is a rails plugin that enables changes the default date and datetime renderers to use the jscalendar library (http://www.dynarch.com/projects/calendar/).

Once you install the plugin, rails will automatically try to render and date or datetime fields using this plugin. However, it won't work properly until you include the necessary javascripts and stylesheets in your layout as follows:

<%= stylesheet_link_tag "/javascripts/jscalendar-1.0/calendar-win2k-cold-1.css" %> <%= javascript_include_tag "jscalendar-1.0/calendar.js" %> <%= javascript_include_tag "jscalendar-1.0/lang/calendar-en.js" %> <%= javascript_include_tag "jscalendar-1.0/calendar-setup.js" %>