Sep 132006
So before I head off for the first event on my Rails Conf Europe calendar – Pizza on Rails (sponsored by Cominded). I thought I would mention that Richard White and myself have now released version 3.2.0 of the ajax scaffold plugin. This fixes a few bugs and a compatibility problem with generators before version 3.1.6.
The wiki contains links to various bits of documentation for both the plugin and the generator. Plugin specific posts from myself can be found here
Right, free beer and pizza……
No Responses to “Ajax Scaffold Plugin v3.2.0 Released”
Sorry, the comment form is closed at this time.












Hi Scott,
just a short hint. if you set the except-option to ['edit', 'delete'] the ‘actions’-column at the right side will not be shown in the table-body. that’s ok, but the column is there in the table-head.
In ‘_column_headings.rhtml’ you forgot to query if the column should be shown. Just change the ‘<th></th>’ to
<pre>
<% unless @no_edit && @no_delete %>
<th></th>
<% end %>
</pre>
In ‘_column_totals.rhtml’ you did it already.
Not a big thing, but I wanted you to know.
greez
Thanks for that B, I’ll change that in the next little release that is coming up.
Cheers
Scott