From e9cdc89feb7af20bbf9a910663c3ad93b2d6880c Mon Sep 17 00:00:00 2001 From: Dwight Watson Date: Thu, 19 Sep 2013 11:12:58 +1000 Subject: [PATCH] Document other select helpers for range, years and months --- html.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/html.md b/html.md index cb139798058..bec1d15eef8 100644 --- a/html.md +++ b/html.md @@ -152,6 +152,18 @@ This allows you to quickly build forms that not only bind to model values, but e 'Dogs' => array('spaniel' => 'Spaniel'), )); +**Generating A Drop-Down List With A Range** + + echo Form::selectRange('number', 10, 20); + +** Generating A Drop-Down With A Year Range** + + echo Form::selectYear('year', 1900, 2000); + +** Generating A List With Month Names** + + echo Form::selectMonth('month'); + ## Buttons