0
client_side_validationsを使用しているときに以下のエラーが発生しています...私のソースを以下に置いています..フォームは何も複雑ではありません。工夫して...誰かが...問題は何か手伝ってくれるRails 3 client_side_validationsでコンパイルエラーが発生しました(私はdeviseを使用しています)
エラー:
compile error
C:/project/madhu_ar/app/views/profiles/new.html.erb:2: syntax error, unexpected tASSOC, expecting kEND
...rm_for(@profile), :validate => true do |f| @output_buffer.sa...
^
C:/project/madhu_ar/app/views/profiles/new.html.erb:54: syntax error, unexpected kENSURE,
expecting $end
My Source is like this :
<h1>Business Profile Setup </h1>
<%= form_for(@profile), :validate => true do |f| %>
<div class="field">
<%= f.label :businessname %>
<br />
<%= f.text_field :businessname %>
</div>
<div class="field">
<%= f.label :addressline1 %>
<br />
<%= f.text_field :addressline1 %>
</div>
よろしく マドゥカー