Displaying 1 result from an estimated 1 matches for "jwcid".
Did you mean:
jcid
2006 May 24
3
Real life use of multiple linked models in the same view
I''m pretty new to Rails and now, in order to fully learn RoR, I''m trying to replicate a project developed in Java using Hibernate+Tapestry. Tapestry is based on components and you can really use objects mappings in views like:
Example from the contact edit (view).
<input jwcid="@TextField" value="ognl:contact.name" />
<input jwcid="@TextField" value="ognl:contact.officePhone.value" />
The same RoR code should look like:
<%= text_field ''contact'', ''name'' %></p>
<%= text_fi...