Displaying 2 results from an estimated 2 matches for "list_upload".
Did you mean:
list_uploads
2006 Mar 25
1
Controller/View Problem
Hi,
I have several controllers for my webapp. I''d like to make a view that
could take processed data through several controllers. Is this possible?
For example, I have two controllers named ''upload'' with an action
list_uploads and a controller named notes with list_notes action.
I want to bring both of these action under a single view which could
mean a table with list_notes and list_uploads.
I thank in advance!
Rizwan Reza
--
Posted via http://www.ruby-forum.com/.
2006 Apr 24
1
Upload Progress Bar not showing
...render :partial => ''upload_form'' %>
<p><input type="submit" value="Upload…"/></p>
<%= upload_status_tag %>
</form>
<p><%= link_to ''« Show All Uploads'', :action => ''list_uploads''
%></p>
Also, if this affects the uploading progress bar process, in my model
I''m specifying that I''ll have the upload saved in the filesystem. Here
is what the ''upload'' model looks like:
class Upload < ActiveRecord::Base
has_one :mov...