AjaxScaffold 3.1.5 Released
Posted by Richard White Tue, 18 Jul 2006 17:49:48 GMT
AjaxScaffold has been deprecated in favor of ActiveScaffold
Another minor release that patches the functional and unit tests. If you haven’t had any problems with your tests running then you don’t need to regenerate them with the new version, if you had this should fix those issues.
Quick question. After I have created the database and ran ajax_scaffold. I run a migration to add some columns to the database. When I had these columns to the _form.rhtml file. Now when I click on create it goes into and endless loop? Is there something I’m missing. With rails scaffold this is all that is needed. I am really enjoying ajax scaffold though. Great job.
Is there any errors in your development.log or in your FireBug console (check the response on the create request). You are using FireBug aren’t you :)
Of course… Always use firebug. I found the issue. I had a column named type, and throughing and error..wrong argument type String, changed the column to be types and renders fine. Thanks again.
:o oh!?