This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Rails Signals (author)
Mon Jun 29 00:20:00 -0700 2009
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Thu Feb 19 21:16:15 -0800 2009 | |
| |
History.txt | Thu Feb 19 21:44:11 -0800 2009 | |
| |
MIT-LICENSE | Mon Sep 03 03:04:35 -0700 2007 | |
| |
Manifest.txt | Thu Feb 19 10:28:19 -0800 2009 | |
| |
README.txt | Mon Jun 29 00:13:47 -0700 2009 | |
| |
Rakefile | Thu Feb 19 21:44:04 -0800 2009 | |
| |
init.rb | Thu Feb 19 10:28:19 -0800 2009 | |
| |
js_test/ | Thu Feb 19 21:56:41 -0800 2009 | |
| |
lib/ | Mon Jun 29 00:20:00 -0700 2009 | |
| |
public/ | Mon Jun 29 00:13:47 -0700 2009 | |
| |
spec/ | Thu Feb 19 21:42:11 -0800 2009 |
README.txt
= jQuery CalendarDateSelect
A jQuery based version of the calendardateselect plugin.
= Installation
1. script/plugin install git://github.com/railssignals/jquery_calendar_date_select.git
2. Add the javascript and css include tags to your /app/views/layouts/application.html.erb
(or whatever layout you want it included in)
<%= javascript_include_tag 'calendar_date_select/jquery/jquery-1.3.2.min.js' %>
<%= javascript_include_tag 'calendar_date_select/jquery/jquery.string.1.0.js' %>
<%= javascript_include_tag 'calendar_date_select/jquery/jquery.calendardateselect.js' %>
<%= stylesheet_link_tag '/stylesheets/calendar_date_select/jquery.calendardateselect.css' %>
3. Add the setup function to your /public/javascripts/application.js
jQuery(document).ready(function($){
$("[selector]").datetimeselect();
});
4. Add elements in your pages with the class or id that matches [selector]
Input Elements will show a Calendar in response to the onClick event.
<input class="[selector]"> OR <input id="[selector]">
Div and Span Elements will have the calendar placed within them and always show the Calendar.
<div class="[selector]"> OR <div id="[selector]">
<span class="[selector]"> OR <span id="[selector]">
= Configuration
Coming soon...
= TODO:
List to come soon...
= Based upon the popular:
= CalendarDateSelect
http://code.google.com/p/calendardateselect/
== Examples
"See a demo here":http://electronicholas.com/calendar
== Submitting patches
Please take care to do the following:
* Clean up your patch (don't send a patch bomb with a hundred features in one)
* Write test cases!
* As a general rule of thumb, think of ways to make things more general purpose than specific.







