method

upload_status_text_tag

rails latest stable - Class: ActionView::Helpers::UploadProgressHelper

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v1.0.0) is shown here.

upload_status_text_tag(content=nil, options={})
public

Content helper that will create a div with the proper ID and class that will contain the contents returned by the upload_status action. The container is defined as

  <div id="#{status_tag_id}" class="uploadStatus"> </div>

Style this container by selecting the .uploadStatus CSS class.

The content parameter will be included in the inner most div when rendered.

The options will create attributes on the outer most div. To use a different CSS class, pass a different class option.

Example CSS:

  .uploadStatus { font-size: 10px; color: grey; }