No commit activity in last 3 years
No release in over 3 years
"It uses javascript to invoke jquery ui datepicker and timepicker to inline edit datetime fields"
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.7
~> 10.0
 Project Readme

InPlaceEditWithDatepicker

TODO: Write a gem description

Installation

Add this line to your application's Gemfile:

gem 'in_place_edit_with_datepicker'

And then execute:

$ bundle

Or install it yourself as:

$ gem install in_place_edit_with_datepicker

Setup

Add the following lines in your application.js in this sequence

//= require jquery
//= require jquery_ujs
//= require jquery-ui
//= require jquery-ui-timepicker-addon
//= require jquery.purr
//= require best_in_place
//= require best_in_place_datetime
//= require turbolinks
//= require_tree .

Add the following to your application.css in this sequence

*= jquery-ui-timepicker-addon
*= require_tree .
*= require_self
*/

Download the following files:

  1. http://trentrichardson.com/examples/timepicker/jquery-ui-timepicker-addon.css and save to assets/stylesheets
  2. http://trentrichardson.com/examples/timepicker/jquery-ui-timepicker-addon.js and save to assets/javascripts

Usage

Invoke the datetimepicker and best_in_place in a js file, like so:

$(document).ready(function() {
	$("#datepicker").datepicker({
		changeMonth: true,
    changeYear: true
	});
  /* Activating Best In Place */
  jQuery(".best_in_place").best_in_place();
});

The gem works exactly as the best_in_place gem, say for eg:

    <%= best_in_place @user, :name %>

For type datetime,

    <%= best_in_place @user, :date_of_birth, as: :datetime %>

For type date,

    <%= best_in_place @user, :date_of_delivery, as: :date %>

For type time,

    <%= best_in_place @user, :time_of_delivery, as: :time %>

Contributing

  1. Fork it ( https://github.com/AasthaKesarwani1539/in_place_edit_with_datepicker/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request