search for: column_data

Displaying 2 results from an estimated 2 matches for "column_data".

2005 Mar 03
0
routes and link_to
...9;', :controller_prefixx => ''rails_right'' (for the test, I put a second x at the end to be sure I don''t collide from the :controller_prefix used in rails). In my view, I have this: <% @rights.each do |right| %> <tr> <td class="column_data"><%= link_to("Delete", :action => "delete", :id => right.right_id) %></td> <td class="column_data"><%= link_to(right.right_name, :action => "update", :id => right.right_id) %></td> <td clas...
2006 Jul 08
9
How to handle dynamically columned tables in rails
I want to build an application that lets me (the end user accessing a web page) design a simple list with columns and add records. E.g., if the end user says I want a table that has a list of songs, he can create a list (title, date, artist, label) and then make another list of, e.g., books on his bookshelf with the necessary columns (title, author, pub_date, shelf). The end user