Displaying 20 results from an estimated 2000 matches similar to: "Form_for text_area"
2006 Aug 02
7
form_for not working with Markaby
I''m playing around with Markaby and I decided to write a little blog app.
I''m running into issues with forms however. If I use form_for the output of
the form gets swallowed. For example:
form_for :article, @article do |f|
f.text_field :title
f.check_box :published
f.text_area :description
f.text_field :pub_date
f.text_area :content
end
gets rendered as an empty form
2008 Apr 06
10
about the form_for ..
question one:
is there any select box tag for form_for?
now,perhaps i just can use the select or select_tag?
question tow:
i have a A model,it has one B such as:
class A< ActiveRecord::Base
belongs_to :B
when i use the form_for tag,how can i output the variable name?like
this:
<%form_for :a,@a,:url=>{:controller=>"a",:action=>"save"} do |f|%>
2008 Sep 09
2
form_for submit to a custom action
hi forum,
I am new to rails, and i am just getting my hang of things.
Problem,
how do you pass content captured in a form to a custom method?
I have the following form:
<% form_for :message, @message, :url => { :action => ''reply''} do |f|
%>
<table cellpadding="4" cellspacing="5">
<tr>
<td>Content:<%=
2008 Dec 02
1
form_for with partial using do |@f|
Is it possible to pass this FormBuilder object to a controller and then
back to a partial?
I have a form rendering a partial that i would like to update with a
call to my controller based on user selectable parameters, but when the
AJAX comes back, i get this error message because i cannot pass a form
builder object between the controller and the view:
"undefined method
2005 Dec 21
8
text_area
Hi I''d like to know how to add default text text area using the function
text_area. I ''ve tried using value = "....." to do this but with no
luck.
Could some one please answer my simple question?
Thanks.
Dan.
--
Posted via http://www.ruby-forum.com/.
2006 Apr 06
2
text_area and :value
I''m trying to use the text_area() method and would like to populate the
text block with initial text.
According to this: http://dev.rubyonrails.org/ticket/3752 there was a
fix put in place, but I''m ont sure how to integrate this.
How do I get the :value parameter to show up within the textbloc instead
of the html attributes?
--
Posted via http://www.ruby-forum.com/.
2007 Aug 17
3
Clear text_area value onfocus
Hi!
I have a "text_area" that looks like this...
<%= text_area ''business'', ''otherDigitalDesc'', "cols" => 25, "rows" =>
4, "value" => "Enter Description if Yes..." %>
Right now, if I submit it, it adds "Enter Description if Yes" into the
database. It would be nice to not have it enter
2008 Jan 22
4
newlines in text_area
Hi @ all
I would like to enter a text with a text_area into the database. It runs
excellent. But when I want to show the entered text in the show view,
all newlines (paragraphs) are deleted and the text is only one block.
How can I save the returns (newlines) too?
Thanks for helping!!
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received
2006 Jan 21
1
text_area content with text_area and not text_area_tag ?
Hello,
Is it possible to fill the textarea content when using the text_area
function ?
Why there is 2 , + or - similar class : FormHelper and FormTagHelper ?
2007 Sep 27
2
text_area empty_clob()
Anyone know why my text_area field is being prefilled with
"empty_clob()" instead of simply being empty like I would
expect? I''m using Oracle 10g so I suspect it''s coming from
the oci8 driver somehow?
Here''s the code:
<% form_for :user do |f| -%>
<%= f.text_area :notes, :rows => 2, :cols => 32 %>
<% end -%>
It should be just an empty
2009 Aug 16
2
rails form_for submit button
Hi,
Presently the submit button is coming as a button in below case.
<% form_for @chapter do |chapter_form| %>
... labels
... text_areas..
<%= chapter_form.submit ''Create'' %>
I want to build a custom button in CSS and show that instead of the
button.
Can anyone help me please?
2009 Oct 22
19
undefined method `stringify_keys!' for "":String
i have an error
undefined method `stringify_keys!'' for "":String
my view is given below
<%= form_tag :action => ''resolve_create'', :resolve => @resolve %>
<p>resolution:<br />
<%= text_area ''resolve'',''content'', :cols => 40, :rows => 12 %></p>
<%= submit_tag
2010 Oct 14
7
undefined method?
I''m trying to learn rails as I go along, and having a bit of trouble.
There is an undefined method cropping that I don''t know why rails
thinks should be there.
Firstly, I''m using rails 3, ruby 1.9.2
I have a controller with an index action This part works fine, but i
am trying to add a comment form to the page that is rendered by that
index action.
Supposing my
2007 Aug 09
7
Integrating polymorphic models into controllers views? how?
I''m having trouble trying to get this to work.
How the heck do you get a polymorphic controller to work? Especially
integrating it with a view?
Let''s say that we have shows, and episodes, then comments.
A show has many episodes, an episode has many comments.
the route is /shows/1/episodes/1/
Now to add a comment to that episode, how would I do it? Let''s say
that the
2006 Jul 27
2
setting initial text field values in a form
Hi,
I am trying to create a basic form in which I want one of the fields
initialized before displaying it.
My code (in a view) is as follows:
<%
if ( session[:user_id] != nil )
then
logged_in_user = User.find(session[:user_id])
end
%>
<% form_for :suggestion do |form| %>
<label for="suggestion_title">Topic:</label><br/>
<%=
2010 May 28
8
form helpers don't seem to work with RJS files...
I’ve been spending a great deal of time chasing this problem. Hopefully
someone sees something obvious I’m doing wrong. Basically anytime I try
to call fields_for from an RJS file or within a partial in the RJS file,
I get the following error. My goal is simply to load a partial into a
div. The fields in this partial require fields_for though. And that’s
where the problem lies.
2006 Jun 25
0
Colouring ''text_area'' plus scrollbar on view
Hi,
I am trying to colour a text_area input field,
including the scrollbar (2-dimensional field).
I was able to change the colour of a button associated
with a ''submit_tag'' by adding a :class and defining
properties in my CSS file.
Is something similar required?
Thanks,
Lee.
___________________________________________________________
All new Yahoo! Mail "The
2008 Jul 28
0
text_area value
Hey,
I have existing threads with two fields: title and text. When a user
clicks "edit", I say, in the new thread form:
<% form.text_area :text, :value => params[:text] %>
params[:text] = the text in the thread which the user wants to edit.
It works fine most of the time, but if I made a new thread and had
linebreaks, clicking edit fails.
New form:
text:
sdfjksdfj
sdfjsdf
2008 Mar 03
1
How change text_area form helper into rich text entry area/control?
Do you know how to render a rich text input area (with HTML formatting
buttons (bold, italics, etc., available?)
In RoR I''m hoping this is very easy to pull off?!?
<%= text_area ''blogentry'', ''entry'' %></p>
TO
<%= rich_text_area ''blogentry'', ''entry'' %></p> ???
Haven''t found
2011 May 16
2
Cannot get multipart => true , running well in my form when using remote => true
I have a simple form , with a file field
= form_for (Clip.new), :html => {:multipart => true} , :remote =>
true , do |f|
= f.hidden_field :user_id, {:value => current_user.id}
= f.text_field :name
= f.text_area :description
= f.file_field :image
= f.submit I18n.t(:add)
generating the html code
<form accept-charset="UTF-8"