method
build_options
v4.2.1 -
Show latest stable
-
0 notes -
Class: ActionView::Helpers::DateTimeSelector
- 1.0.0
- 1.1.6
- 1.2.6
- 2.0.3
- 2.1.0
- 2.2.1 (0)
- 2.3.8 (0)
- 3.0.0 (0)
- 3.0.9 (-1)
- 3.1.0 (12)
- 3.2.1 (0)
- 3.2.8 (0)
- 3.2.13 (0)
- 4.0.2 (13)
- 4.1.8 (0)
- 4.2.1 (0)
- 4.2.7 (0)
- 4.2.9 (0)
- 5.0.0.1 (0)
- 5.1.7
- 5.2.3
- 6.0.0
- 6.1.3.1
- 6.1.7.7
- 7.0.0 (0)
- 7.1.3.2 (1)
- 7.1.3.4 (0)
- 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>..."