Hi I have a very simple input field for a URL from a user:
<%= f.text_field :url, :value=>"#{@url_website}" %>
I would like to process the input to check if they put http:// before it, and if not, add it manually. Could I run a function on it before saving? How is this done?
Thanks!
Well you should just put a
before_savein the model to format the text, so if your model was like this