Question

Im a haml newbie

Im trying to figure out how to make an html "input" field for "id", readonly using haml.

the html, should read something like this (not exact reflection)

but the readonly value never comes through

%h2 Sections
= semantic_form_for @section do |f|
  = f.inputs do
    = f.input :id, :readonly => "true"      <-----problem 
    = f.input :title

what am I missing

Était-ce utile?

La solution

Try:

= f.input :id, input_html: { readonly: true }
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top