Displaying 6 results from an estimated 6 matches for "my_text_field".
2010 Apr 20
2
Javascript validations for word count in fckeditor
I need to count the number of words in fckeditor using javascript
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To unsubscribe from this group, send email to
2006 Mar 04
1
Hiding and expanding form fields?
...e.
http://localhost:3000). The relevant link hear is as follows:
http://localhost:3000/rails_info/properties
In short, it seems to be a expand and collapse functionality using
AJAX. However, I''ll be using form elements instead. For example,
<input type="text" name="my_text_field" value="" size="20" />
Well, I must go and thanks in advance.
Peace,
-Conrad
2007 Jan 30
7
text_field_tag
can you use :confirm => ''great consequences'', :post => true within
text_field_tag options?
I''m trying to confirm with users that changing that particular field
will have great consequences.
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
2006 Apr 28
1
beginner - default form values
I want to build a simple calculator with 1 form and a results page.
The form will be redisplayed with an error message upon an invalid value
entered.
I won''t be using any database/active record for this.
The problem i have is when i return to the form page i want to redisplay
the values already entered in the form fields.
Should i use text_field (which seems to be tied to a model) or
2005 Dec 27
0
Edge Rails idea -- was [DRY relative to edit and show]
...#39;re using the RoR helpers to create the forms (/app/views/.../_form)
> <%= text_field ''table'', ''field'' %>
> , what about creating an application-wide helper that will set read-only
> attribute based on a flag or global?
>
> <%= my_text_field ''table'', ''field'', read_only %>
>
> Rich Clingman
> Rich-oBnrtXkpV0tBDgjK7y7TUQ@public.gmane.org
>
>
> ----- Original Message -----
> From: Michael
> To: rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
> Sent: Friday, Dec...
2005 Dec 23
4
DRY relative to edit and show
I''m a newbie, but it seems like edit and show should somehow share a
partial form.
In particular I''ve customized the layout of my edit form by using a
table and multiple rows/columns and I want my show form to look the
same.
Currently I''ve modified my show view to use _form, but now all the
fields are read/write and obviously they need to be read only on the
show form.