jui\SliderInput $clientEventMap

$clientEventMap protected property Event names mapped to what should be specified in .on(). If empty, it is assumed that event passed to clientEvents is prefixed with widget name. Event names mapped to what should be specified in .on(). If empty, it is assumed that event passed to clientEvents is prefixed with widget name. protected array $clientEventMap = ['change' => 'slidechange', 'create' => 'slidecreate', 'slide' => 'slide', 'start' => 'slidestart', 'stop' => 'slidestop

jui\SliderInput $containerOptions

$containerOptions public property The HTML attributes for the container tag. See also yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered. public array $containerOptions = []

jui\Selectable begin()

begin() public static method Begins a widget. This method creates an instance of the calling class setting the MODE_BEGIN mode. Any item between begin() and end() which match the filter attribute, will be selectable. It will apply the configuration to the created instance. A matching end() call should be called later. As some widgets may use output buffering, the end() call should be made in the same view to avoid breaking the nesting of output buffers. See also end(). public static stati

jui\Selectable run()

run() public method Renders the widget. public void run ( )

jui\Selectable init()

init() public method Initializes the widget. public void init ( )

jui\Selectable renderItems()

renderItems() public method Renders selectable items as specified on $items. public string renderItems ( )return string The rendering result. throws \yii\jui\InvalidConfigException.

jui\Selectable $items

$items public property List of selectable items. Each item can be a string representing the item content or an array of the following structure: [ 'content' => 'item content', // the HTML attributes of the item container tag. This will overwrite "itemOptions". 'options' => [], ] public array $items = []

jui\Selectable $mode

$mode public property The mode used to render the widget. public string $mode = self::MODE_DEFAULT

jui\Selectable $itemOptions

$itemOptions public property List of HTML attributes for the item container tags. This will be overwritten by the "options" set in individual $items. The following special options are recognized: tag: string, defaults to "li", the tag name of the item container tags. See also yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered. public array $itemOptions = []

jui\Selectable $options

$options public property The HTML attributes for the widget container tag. The following special options are recognized: tag: string, defaults to "ul", the tag name of the container tag of this widget. See also yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered. public array $options = []