Hi
Im using the 5 views and one controller.To edit the form and
produced Couldn’t find ResortBasic without an ID
View code
…editresortbasic.html.erb
<% form_tag :action => ‘editresortbasic’,:controller=>‘Wizard’ do %>
Edit Resort Basic
<tr>
<td>
<b>Resort Class</b>
</td>
<td>
<!--%=collection_select(:resortclassid,
ResortClass.find(:all),:id,:resortclass)%–>
<%=select(“resortclass”, “resortclassid”,
ResortClass.find(:all).collect {|p| [ p.resortclass, p.id ] })%>
</td>
</tr>
<tr>
<td>
<b>Season</b>
</td>
<td>
<!--%=collection_select(:seasonid,
Season.find(:all),:id,:seasontype)%–>
<%=select(“seasontype”, “seasontypeid”,
Season.find(:all).collect
{|p| [ p.seasontype, p.id ] })%>
Resort Name |
ResortType.find(:all),id,resorttype)%–> |
Website |
<%= text_field_tag :website %> |
<td>
<%= submit_tag "Next",:class =>'myButton' %>
</td>
</tr>
controller code…
def editresortbasic
@resort_basic = ResortBasic.find(params[:id])
if request.post?
@resort_basic.update_attributes(params[:resort_basic])
# flash[:notice] = ‘City was successfully updated.’
# render :action=>'editresortcontact'
end
but i got the bugs
ActiveRecord::RecordNotFound in WizardController#editresortbasic
Couldn’t find ResortBasic without an ID
RAILS_ROOT: D:/RubyProjects/TestEcohols
Application Trace http://localhost:3000/wizard/editresortbasic# |
Framework
Trace http://localhost:3000/wizard/editresortbasic# | Full
Tracehttp://localhost:3000/wizard/editresortbasic#
D:/Program Files/NetBeans
6.1/ruby2/jruby-1.1/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/base.rb:1248:in
find_from_ids' D:/Program Files/NetBeans 6.1/ruby2/jruby-1.1/lib/ruby/gems/1.8/gems/activerecord-2.0.2/lib/active_record/base.rb:504:in
find’
vendor/plugins/paginating_find/lib/paginating_find.rb:103:in
find_with_pagination' app/controllers/wizard_controller.rb:233:in
editresortbasic’
:1:in `start’
So anybody help for me
thanks
balaji