ANSWERED

I actually found the answer while formulating the question but I'm posting it any way since some might find this useful(as said here: Should I continue adding a question if I have found the answer myself?)

I'm having trouble adding size to a file field in ROR3. Here was my syntax:

= f.file_field :file, :size => "11"

this doesnt appear but creates an file input field with this:

<input type="file" name="soap_test_zip_file[file]" id="soap_test_zip_file_file">

now I KNOW I made it work before so I looked into some old code and found this:

= file_field_tag :file, :size => 11

which outputs this:

<input type="file" size="11" name="file" id="file">

which gives me the correct size, but the wrong file id and name. So I tried this:

<input type="file" size="11" name="soap_test_file_file" id="soap_test_file_file">

which gives me the RIGHT ID, but the WRONG NAME. Question is how do I reproduce that file_field but with the size?

I looked into this answer by Ryan Bigg btw: Problem showing the 'size' attribute for a 'file_field' using Ruby on Rails 3

and he's saying it's a cross browser thing that they render file fields differently. That is the case, but I would like to render a short file field IF the browser can handle it.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

I used:

= file_field_tag :soap_test_zip_file, {:name => 'soap_test_zip_file[file]', :size => 11}

This made me override the name(for the controller) and the size

link|improve this answer
feedback

doesn't seem to work for me..

I thought of another alternative : jquery ..

$('#user_photo_photo').attr('size', 1);

bingo!!

link|improve this answer
size only works in FF as far as i tested(didnt check IE and opera). webkit won't follow this size but instead will follow the input width defined in your css – corroded Jun 2 '11 at 4:19
I agree size works only on FF.. sorry for the mistake . But your solution doesn't work for me. I am still unable to set the width of the text box for file input. any solution ? – Gaurav Shah Jun 2 '11 at 4:31
which browser are you using and how are you setting its size? the size attribute or the width in css? – corroded Jun 2 '11 at 4:56
I want it to support all browser .. :) If I try reducing the width it doesn't properly work in FF If I set size it doesn't work in IE. What I have done is I have file input and on above that (using z index) I have placed an image. So when the image is clicked the browse button in file filed is simulated . so if I set size now it doesn't work in IE and if I set width it doesn't work in FF . Thank you – Gaurav Shah Jun 2 '11 at 5:07
you set a size for it to work in ff and set the width for IE. you will have to use different styles for both as they render it very differently – corroded Jun 2 '11 at 5:27
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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