jqgrid-jquery-rails
Gemified by Doc Walker
Provides the jqGrid jQuery plugin packaged for the Rails 3.1+ asset pipeline.
Installation
Add these lines to your application's Gemfile:
# jqgrid jquery plugin packaged for the rails asset pipeline
gem 'jqgrid-jquery-rails', '~> 4.6.001'And then execute:
$ bundleOr install it yourself as:
$ gem install jqgrid-jquery-railsGem version notes:
- Version is in the format
X.Y.ZVVwhereX.Y.Zis version ofjqGridplugin andVVis version of gem (with leading zero); - Refer to Semantic Versioning 2.0.0 (http://semver.org);
Usage
Add these lines to app/assets/javascripts/application.js
// provides jqgrid jquery plugin from gem 'jqgrid-jquery-rails':
//= require jqgrid-jquery-railsAdd these lines to app/assets/stylesheets/application.css
/*
provides jqgrid jquery plugin from gem 'jqgrid-jquery-rails':
= require jqgrid-jquery-rails
*/Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request
Acknowledgements
- jqGrid jQuery plugin
- jqGrid Documentation
- RailsCast #245 New Gem with Bundler -- inspiration
- Gemify Assets for Rails -- guidance