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

有帮助吗?

解决方案

Try:

= f.input :id, input_html: { readonly: true }
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top