2amigos / yii2-selectize-widget

Selectize From Brian Reavis Yii2 Widget
Other
73 stars 41 forks source link

Placeholder #15

Closed twg-group closed 9 years ago

twg-group commented 9 years ago

Hello! How can i add placeholder to the input field? (SelectizeDropDownList)

echo SelectizeDropDownList::widget([
    'name' => 'items',
    'items' => ArrayHelper::map($items, 'item_id', 'name'),
    'options' => ['placeholder' => 'select please ...'],
    'clientOptions' => [
        'sortField' => 'text',
        'allowEmptyOption' => true
    ]
]);
twg-group commented 9 years ago

it works!

echo SelectizeDropDownList::widget([
    'name' => 'items',
    'items' => array_merge([''=>''], ArrayHelper::map($items, 'item_id', 'name')),
    'options' => ['id'=>'select-input', 'placeholder' => 'select please ...'],
    'clientOptions' => [
        'sortField' => 'text',
    ]
]);
mr-nicky commented 8 years ago

Nice