public
Description: It's a helper to show your content in columns when you use a table.
Homepage:
Clone URL: git://github.com/marciotrindade/show_in_columns.git
dookie (author)
Tue Mar 17 06:14:31 -0700 2009
marciotrindade (committer)
Tue Mar 17 06:34:50 -0700 2009
name age message
file MIT-LICENSE Mon Dec 15 09:21:02 -0800 2008 initial commit [marciotrindade]
file README.mkdn Loading commit data...
file Rakefile Mon Dec 15 09:21:02 -0800 2008 initial commit [marciotrindade]
file init.rb
file install.rb Mon Dec 15 09:21:02 -0800 2008 initial commit [marciotrindade]
directory lib/
directory tasks/ Mon Dec 15 09:21:02 -0800 2008 initial commit [marciotrindade]
directory test/
file uninstall.rb Mon Dec 15 09:21:02 -0800 2008 initial commit [marciotrindade]
README.mkdn

ShowInColumns

It's a helper to show your content in columns when you use a table.

Attributes

collection => an Array or Hash of objects ex. User.all
collumns   => number of columns that will create default is 2
block      => a block of code that will repeat You need add a tag <td>

Install

to instal run:

script/plugin install git://github.com/marciotrindade/show_in_columns.git

Example

You can use like this:

<table id="list_users">
    <% show_in_columns User.all, 2 do |user| -%>
        <td><%=user.name%></td>
    <% end -%>
</table>

this code will generate a HTML like this:

<tr>
  <td>Name 1</td>
  <td>Name 2</td>
</tr>
<tr>
  <td>Name 3</td>
</tr>

Copyright (c) 2008 Marcio Trindade (marciotrindade@gmail.com), released under the MIT license