Sha256: 130c9bc0d06ac7cd8cc908d884c2642c1b767774f5ea8b853ea39b2ee5ad7647

Contents?: true

Size: 1.08 KB

Versions: 5

Compression:

Stored size: 1.08 KB

Contents

= ActiveList

ActiveList is a simple list widget. It permits to create a controller 
method and view helper to displays lists.

The first need was to have a simple component to build easily HTML 
tables. No scaffolds, only listings.

ActiveList works only with Rails ≥ 3.1.

== Quick start

First, the JS code must be added to the pipeline in app/assets/javascripts/application.js:

    //= require active-list.jquery

And get a better, you can add in app/assets/stylesheets/application.css:

    *= require active-list

The simple way to use it is to write in our controller:
  
    class PeopleController < ApplicationController
      list

      def index
      end
    end

And in the view app/views/people/index.html.erb:

    <%=list-%>

== Build Status {<img src="https://secure.travis-ci.org/burisu/active-list.png"/>}[http://travis-ci.org/burisu/active-list]

== To do

* Provides styles as @mixins for a better customization
* Adds support for Prototype JS
* Adds implicit exporters JSON, XML,

== License

ActiveList is released under the MIT license:

* http://www.opensource.org/licenses/MIT

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
active-list-4.1.3 README.rdoc
active-list-4.1.2 README.rdoc
active-list-4.1.1 README.rdoc
active-list-4.1.0 README.rdoc
active-list-4.0.0 README.rdoc