jui\Sortable $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 = []

jui\Sortable run()

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

jui\Sortable renderItems()

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

jui\Sortable $items

$items public property List of sortable 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\SliderInput init()

init() public method Initializes the widget. If you override this method, make sure you call the parent implementation first. public void init ( )

jui\SliderInput run()

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

jui\Sortable $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\Sortable $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 = ['activate' => 'sortactivate', 'beforeStop' => 'sortbeforestop', 'change' => 'sortchange', 'create' => 'sortcreate', 'deact

jui\Slider run()

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

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