Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I add a preloaded costant string in a classic input field in Formtastic?

I have searched a lot, but I haven't find how to resolve this.

For example I have this line of code in my form:

<%= f.input :url, :hint => "Url in the form of: http//www.mysite.com"  %>

and in the input field I want to preload the: "http://", so the user must fill only the remaining of the URL.

share|improve this question

1 Answer

up vote 2 down vote accepted

This should do what you want.

<%= f.input :url, :hint => "Url in the form of: http//www.mysite.com", :input_html => { :value => "http://" }%>
share|improve this answer
Following your hint I have find the correct solution, when you accept the edit that I do, I will accept your answer :) – damoiser Nov 6 '12 at 21:33
The problem with this approach is that it overrides any existing value. For example if the form gets submitted, but returns some validation errors. The user's input will be overridden with 'http://'. – Marc Apr 24 at 12:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.