method
build_options
v6.0.0 -
Show latest stable
-
0 notes -
Class: ActionView::Helpers
- 1.0.0
- 1.1.6
- 1.2.6
- 2.0.3
- 2.1.0
- 2.2.1
- 2.3.8
- 3.0.0
- 3.0.9
- 3.1.0
- 3.2.1
- 3.2.8
- 3.2.13
- 4.0.2
- 4.1.8
- 4.2.1
- 4.2.7
- 4.2.9
- 5.0.0.1
- 5.1.7 (0)
- 5.2.3 (0)
- 6.0.0 (0)
- 6.1.3.1 (0)
- 6.1.7.7 (0)
- 7.0.0
- 7.1.3.2
- 7.1.3.4
- What's this?
build_options(selected, options = {})
private
Build select option HTML from date value and options.
build_options(15, start: 1, end: 31) => "<option value="1">1</option> <option value="2">2</option> <option value="3">3</option>..."
If use_two_digit_numbers: true option is passed
build_options(15, start: 1, end: 31, use_two_digit_numbers: true) => "<option value="1">01</option> <option value="2">02</option> <option value="3">03</option>..."
If :step options is passed
build_options(15, start: 1, end: 31, step: 2) => "<option value="1">1</option> <option value="3">3</option> <option value="5">5</option>..."