I'm new to Rails. i am using aptana Radrails and rad rails standalone
version for my development. Followed some tutorials on the web on how to
create a simple project.
When I fire up the browser the fields and labels are not being
displayed. I also tried IE external to RadRails, and FireFox. Same
thing. I see 'show edit destroy', and 'new', and that's it. I can click
on 'new', then click on 'create', and a record does get added to the
MySQL db (all spaces).
I added a default value to one of the fields and that isn't displayed
either. I've deleted the project and did it again, same result. Deleted
that one and followed the example from the Ruby on Rails for Dummies
book...same result.
Any suggestions on what could be causing this? pls see the attachemnt
too
thank you
Attachments:
http://www.ruby-forum.com/attachment/3770/rails.jpg
--
Posted via http://www.ruby-forum.com/.
What is in index.html.erb, or show.html.erb, or new and edit erb files?
Or perhaps your model has only id and nothing else?
Hard to tell without some source to look at.
first of all thank you very much for your reply.
i followed many examples all seems to be pretty much same. here is one
http://tv.aptana.com/videos/introduction-to-radrails?ref=learn&refId=6
index.html.erb
<h1>Listing employees</h1>
<table>
<tr>
</tr>
<% @employees.each do |employee| %>
<tr>
<td><%= link_to 'Show', employee %></td>
<td><%= link_to 'Edit', edit_employee_path(employee) %></td>
<td><%= link_to 'Destroy', employee, :confirm => 'Are you sure?',
:method => :delete %></td>
</tr>
<% end %>
</table>
<br />
<%= link_to 'New employee', new_employee_path %>
new.html.erb
<h1>New employee</h1>
<% form_for(@employee) do |f| %>
<%= f.error_messages %>
<p>
<%= f.submit 'Create' %>
</p>
<% end %>
<%= link_to 'Back', employees_path %>
show.html.erb
<%= link_to 'Edit', edit_employee_path(@employee) %> |
<%= link_to 'Back', employees_path %>
edit.html.erb
<h1>Editing employee</h1>
<% form_for(@employee) do |f| %>
<%= f.error_messages %>
<p>
<%= f.submit 'Update' %>
</p>
<% end %>
<%= link_to 'Show', @employee %> |
<%= link_to 'Back', employees_path %>
i have also attached the project for your reference.
i am new to RoR so i really appreciate you help to get stuff started.
Thank you Again
Attachments:
http://www.ruby-forum.com/attachment/3777/test.zip
i am not quit sure how to build a app from A-Z as i am new to RoR, i am
currently following Rails for dummies book. i did exactly according to
the book but not sure why its not working . can y any of you pls post me
a video or tutorial URL with correct steps to get me started pls pls
pls.
thank you
A
Sijo
I have same issue. Did you find what was wrong with that example?
If yes please let me know how to fix it.
Thank you,
Vlad