PHP 클래스 yii\bootstrap\ToggleButtonGroup

You can use this widget in an [[yii\bootstrap\ActiveForm|ActiveForm]] using the [[yii\widgets\ActiveField::widget()|widget()]] method, for example like this: php field($model, 'item_id')->widget(\yii\bootstrap\ToggleButtonGroup::classname(), [ configure additional widget properties here ]) ?>
또한 보기: http://getbootstrap.com/javascript/#buttons-checkbox-radio
부터: 2.0.6
저자: Paul Klimov ([email protected])
상속: extends InputWidget
파일 보기 프로젝트 열기: yiisoft/yii2-bootstrap

공개 프로퍼티들

프로퍼티 타입 설명
$encodeLabels whether the items labels should be HTML-encoded.
$items the data item used to generate the checkboxes. The array values are the labels, while the array keys are the corresponding checkbox or radio values.
$labelOptions
$type input type, can be: - 'checkbox' - 'radio'

공개 메소드들

메소드 설명
init ( )
renderItem ( integer $index, string $label, string $name, boolean $checked, string $value ) : string Default callback for checkbox/radio list item rendering.
run ( )

메소드 상세

init() 공개 메소드

public init ( )

renderItem() 공개 메소드

Default callback for checkbox/radio list item rendering.
또한 보기: Html::checkbox()
또한 보기: Html::radio()
public renderItem ( integer $index, string $label, string $name, boolean $checked, string $value ) : string
$index integer item index.
$label string item label.
$name string input name.
$checked boolean whether value is checked or not.
$value string input value.
리턴 string generated HTML.

run() 공개 메소드

public run ( )

프로퍼티 상세

$encodeLabels 공개적으로 프로퍼티

whether the items labels should be HTML-encoded.
public $encodeLabels

$items 공개적으로 프로퍼티

the data item used to generate the checkboxes. The array values are the labels, while the array keys are the corresponding checkbox or radio values.
public $items

$labelOptions 공개적으로 프로퍼티

또한 보기: Html::checkbox()
또한 보기: Html::radio()
public $labelOptions

$type 공개적으로 프로퍼티

input type, can be: - 'checkbox' - 'radio'
public $type