Tagged Questions
The text-field tag has no wiki summary.
2
votes
4answers
405 views
Read-only text field
I have an read-only text-field in my site. And I need to enter a date using cucumber and watir. But I can't set any value. Even passing the value of date with value = method I can't input any output. ...
2
votes
1answer
318 views
How do you give a text field a default font and some padding?
What I am looking to do is change the default font of a text field and give it some padding so that when a person starts typing they will start typing further in from the edge of the text field.
...
1
vote
1answer
81 views
jQuery: Auto-formatting a number in text-field to two decimal places on keystroke
How do I get an input field (text) to accept only numbers and to automatically format it to two decimal places, as the user is typing in each digit?
For example, the default value of the field is ...
1
vote
2answers
1k views
format text_field helper?
Is it possible to apply strftime formatting to the value of a text input field using a Rails text_field helper?
In the form I use for creating or editing a record, I have a text input field which is ...
0
votes
1answer
38 views
Rails text field tag
I have a text field
text_field_tag('version',version, :cols => 20 , :onchange => "validateVer(this);")
In validateVer java script function I am checking whether a valid float is entered, if ...
0
votes
1answer
29 views
HTML/Ruby code reconfiguration - Can I be sure this change still does the same thing?
I'm using Devise for user registration. It automatically gives me the form for a new session:
<%= form_for(resource_name, resource, :url => session_path(resource_name)) do |f| %>
.
.
.
...
0
votes
1answer
31 views
Rails display results in form as text or labels instead of “text_field”,allow destroy only, no updates
I would like to be able to create tags only, no editing, but allowing destroying. The tags are a partial on my Posts page. It works I just cant figure out how to put the result that is in a ...
0
votes
1answer
86 views
how to Show/Hide text field based on drop down selection in rails3
What is the best way to Show/Hide text field based on drop down selection in rails3?
here is the code
<label>Album </label>
<%= select_tag "album", ...
0
votes
1answer
132 views
Text fields from array in Rails
I'm trying to generate a set of text fields for an array using Rails 2.3. I have an array in my controller (which is not part of the model), and I'd like to make a text field for each entry. The array ...
0
votes
0answers
96 views
Ruby on Rails 3- dynamic content in text_field
I have a problem. Maybe this is something easy, but I can't figured
out with my knowledge.
To explain my problem, let's supposse I have a model call User, the DB
table for users
Users
id
username
...
0
votes
0answers
40 views
get value from a text_field and send it to method controller
I have this this form for a model called Supplier
<%= form_for([:central, @supplier]) do |f| %>
<%= f.label :corporate_name %>:<%= f.text_field :corporate_name %>
New name ...
0
votes
1answer
33 views
Is there a way to call a method on the data loaded into a form input in Rails? (Specifically a text_field)
I'm using Rails 3.0.5, and for the reasons specified in this question, I need to call a utc_to_local method on the text_field input for a datetime.
I've tried calling the method in various ways ...
0
votes
2answers
574 views
OnClick select all text in text_field rails
is there a rails way to enable a text_field to select all text upon clicking on it? If not how can I enable the JavaScript to add that type of functionality?
<% text_field value => "highlight ...
0
votes
3answers
573 views
Select only first four lines, from Sql text field
Sql Server 2008 Express >> Visual Web Developer >> C#
I'm pulling records out of the table like this:
SELECT Name, Category, Review FROM ReviewTable
This works fine but the Review field Type in ...
0
votes
1answer
2k views
Text Field disabling in NetBeans
I want to ask if there is a way to make the text field active and inactive according to the radio button.
For example, the textfield will be inactive and when the user click on the radio button, the ...