Problem: I am not sure why my input text box has fixed width(too small so it does not fit the screen), and I cannot change the size with proper ways. Could anyone help me find what's causing this?
In my form partial:
<%= semantic_form_for @post do |f| %>
<%= f.inputs do %>
<%= f.input :name, :input_html => { :size => 10000 } %>
<%= f.input :content, :input_html => {:size => 100000 } %>
<% end %>
<%= f.actions do %>
<%= f.action :submit, :as => :button %>
<%= f.action :cancel, :as => :link %>
<% end %>
<% end %>

Update: I found out that
<%= f.input :name, :input_html => { :style => "width: 80%" } %>
successfully changes the size of the textarea.
New Question: How come
<%= f.input :content, :input_html => {:size => 100000 } %>
fails to work?
To add one more question.. When the user is logged in, I want to simply pass his name for the :name symbol. So I wanted to set the input type as hidden on condition, but I'm not sure how the formtastic syntax works in this case... I tried:
<%= f.input :name, :as => hidden, :name => <%= current_user.name %> %>
And I also tried simply getting rid of the input area for the name variable, and set
<% @post.name = current_user.name %>
But the problem with this is, this way does not pass the validation check that requires the name input to be present.
These two attempts both failed. Is there anyone who can give me answers for 1)textbox sizing issue and 2)getting the input issue?
f.input :content, :input_html => { row: 10, column: 1000 }– Kien Thanh Nov 15 '12 at 7:06