Easiest way for removing labels from Rails Admin forms? -


Is there an easy way to remove labels as a new resource in RailsAdmin?

I have an "optional length of up to 255". However, under most areas it is mandatory and it is confusing to end users.

I do not have a manually added model, I only use default config:

   

thanks in advance In!

rails_admin to help determine the text for each field. Since your field is being marked as optional , I think they are compulsory in some other ways.

You can turn off help messages using help false statement if you want to do it for all areas of the form, then you fields The method can be used:

  config.model 'bug' do fields do edit Help end end of false end  

Comments