Re: [Rails] Form_for text_area

2013-03-13 Thread Crispin Schäffler
Hey If you want default values add them in your model. If you are talking about a placeholder in your view: form_for() do |f| f.text_area :name, :rows => 5, :placeholder => "Your Text here" AS you can see i set 5 rows for the text area AS default to display. And there is some placeholder

Re: [Rails] Form_for text_area

2013-03-13 Thread Dheeraj Kumar
For the default value, add it in the model. Maybe in an after_initialize callback. For the row and col values, read the documentation. http://api.rubyonrails.org/?q=text_area -- Dheeraj Kumar On Wednesday 13 March 2013 at 11:28 AM, karthik Satyanarayana wrote: > Hi all, Since I am new to ru

[Rails] Form_for text_area

2013-03-13 Thread karthik Satyanarayana
Hi all, Since I am new to ruby on rails. I'm stuck in some minor issue. I am using form_for in my view. In that I am using a text text. So, My question is, how to add a default value to the text_area along with the row and col values. Please help me out ASAP. -- You received this message bec