This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Progress_view
Extends: view
A progress view creates a progress bar into the page.
Syntax:
Supports all options in view plus:
<%= progress_view :progress_bar_id, :minimum => 0, :maximum => 100, :indeterminate => true | false, :value => 50, :bind => { :value => … } %>Where:
- :minimum :: The minimum value of the progress bar.
- :maximum :: The maximum value of the progress bar.
- :value :: The current value of the progress bar.
- :indeterminate :: If true then progress bar will be shown indeterminate
Styling the Progress Bar
An example stylesheet for the progress bar:
.progress { width: 100px; height: 10px; border: thin solid #AAAAAA; } .progress .inner { width: 0px; height: 10px; background-color: #AAAAAA; }An example output:
Examples
Add some here!






