I have a database table called “hvd_codes”, the model is called HvdCode.
In my form partial, what should I enter as a parameter to
error_messages_for?
I’ve tried <%= error_messages_for ‘interception_codes’ %> but nothing is
displayed.
I have a database table called “hvd_codes”, the model is called HvdCode.
In my form partial, what should I enter as a parameter to
error_messages_for?
I’ve tried <%= error_messages_for ‘interception_codes’ %> but nothing is
displayed.
I’ve tried <%= error_messages_for ‘interception_codes’ %> but nothing is
displayed.
Sorry. I mean that I tried with <%= error_messages_for ‘hvd_codes’ %>
Jonas Gauffin wrote:
I’ve tried <%= error_messages_for ‘interception_codes’ %> but nothing is
displayed.Sorry. I mean that I tried with <%= error_messages_for ‘hvd_codes’ %>
IIRC error_messages_for simply looks for a global variable named after
its parameter and parse the result ‘errors’ called on it.
So if you have a @hvdcode which is a HvdCode instance, just use
‘hvdcode’. If you had a @foo instance of HvdCode, you’d use ‘foo’…
Lionel.
Lionel B. wrote:
Jonas Gauffin wrote:
I’ve tried <%= error_messages_for ‘interception_codes’ %> but nothing is
displayed.Sorry. I mean that I tried with <%= error_messages_for ‘hvd_codes’ %>
IIRC error_messages_for simply looks for a global variable named after
its parameter and parse the result ‘errors’ called on it.
So if you have a @hvdcode which is a HvdCode instance, just use
‘hvdcode’. If you had a @foo instance of HvdCode, you’d use ‘foo’…Lionel.
Ok. It works. Thank you.
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.
Sponsor our Newsletter | Privacy Policy | Terms of Service | Remote Ruby Jobs