select Feld
Das Formularelement vom Type "select" dient der Datenauswahl aus einer DropDown-Liste in einem Formular
/**
* Create a select box field.
*
* @param string $name
* @param string $label
* @param array $list
* @param string $selected
* @param array $options
* [
* 'placeholder' => '
* ]
*
* @return string
*/
public function select($name, $label = null, $list = [], $selected = null, array $options = []) {
// ...
}
Parameter für das select Feld
Selectpicker
duallistbox
Beispiele
Standard

Group-Select

Bootstrap-selectpicker

Bootstrap-selectpicker mit subtext

Bootstrap-selectpicker AJAX
alaf_server_side.php
Bootstrap-duallistbox

Last updated