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

Was it helpful?

Solution

Try:

= f.input :id, input_html: { readonly: true }
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top