azisaka / show_in_columns forked from marciotrindade/show_in_columns
- Source
- Commits
- Network (2)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
dookie (author)
Tue Mar 17 06:14:31 -0700 2009
| name | age | message | |
|---|---|---|---|
| |
MIT-LICENSE | ||
| |
README.mkdn | ||
| |
Rakefile | ||
| |
init.rb | ||
| |
install.rb | ||
| |
lib/ | ||
| |
tasks/ | ||
| |
test/ | ||
| |
uninstall.rb |
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

