Replaces select inputs with a dropdown list
<select name="xy" id="xy" size="1">...</select>
$(function() {
$('select').select();
});
If the list went out of the container and isnt visible because its overflow:hidden, you can add the parent container as option:
$(function() {
$('select').select({
container: '#parentContainer'
});
});
Option | Werte | Beschreibung |
---|---|---|
container: document | Selector | Der Eltern-Container damit die Select-Box ggf. nach oben aufgeht |
label: '%s' | string | Bitte wählen sie %s Objekte aus: |
options: '%s' | string | Jede Option kann so Dynamisch erweitert werden: Anzeige: %s |
maxOffset: 99999 | int/float [0-9] | Gibt an, wie weit die geöffnete Select-Box verschoben werden darf. |