I like to keep my markup and style out of the controller and Models.
In this example Im adding 2 Data base Table column to one View Table with the Project name as the column and the manager as a small span. How can I recreate this with the json technic.
Example Data:
Table
Project | Date | Actions
Project Name, project manager | 11/20/2011 | edit, change status action, delete
<tr>
<td class="cell_stuff" ><%=link_to project. project, class: "stuff_link"%>
<span class="stuff"> <%= project.manager.full_name%> </span>
</td>