Skip to content

Commit

Permalink
Updated docs for checkboxList and radioList
Browse files Browse the repository at this point in the history
  • Loading branch information
kartik-v committed Jul 14, 2014
1 parent d042916 commit 2ad8904
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions widgets/ActiveField.php
Original file line number Diff line number Diff line change
Expand Up @@ -366,9 +366,9 @@ public function checkbox($options = [], $enclosedByLabel = true)
* - unselect: string, the value that should be submitted when none of the checkboxes is selected.
* By setting this option, a hidden input will be generated.
* - separator: string, the HTML code that separates items.
* - inline: boolean, whether the list should be displayed as a series on the same line, default is false
* - item: callable, a callback that can be used to customize the generation of the HTML code
* corresponding to a single item in $items. The signature of this callback must be:
* - inline: boolean, whether the list should be displayed as a series on the same line, default is false
*
* ~~~
* function ($index, $label, $name, $checked, $value)
Expand Down Expand Up @@ -402,9 +402,9 @@ public function checkboxList($items, $options = [])
* - unselect: string, the value that should be submitted when none of the radio buttons is selected.
* By setting this option, a hidden input will be generated.
* - separator: string, the HTML code that separates items.
* - inline: boolean, whether the list should be displayed as a series on the same line, default is false
* - item: callable, a callback that can be used to customize the generation of the HTML code
* corresponding to a single item in $items. The signature of this callback must be:
* - inline: boolean, whether the list should be displayed as a series on the same line, default is false
*
* ~~~
* function ($index, $label, $name, $checked, $value)
Expand Down

0 comments on commit 2ad8904

Please sign in to comment.