fixed problems with multi selct
This commit is contained in:
parent
0a5743b0ff
commit
fb340d8fd8
|
@ -782,11 +782,11 @@ class htmlSelect extends htmlElement {
|
||||||
$this->selectedElements = $values[$this->name];
|
$this->selectedElements = $values[$this->name];
|
||||||
}
|
}
|
||||||
$multi = '';
|
$multi = '';
|
||||||
|
$name = ' name="' . $this->name . '"';
|
||||||
if ($this->multiSelect) {
|
if ($this->multiSelect) {
|
||||||
$multi = ' multiple';
|
$multi = ' multiple';
|
||||||
$this->name = $this->name . '[]';
|
$name = ' name="' . $this->name . '[]"';
|
||||||
}
|
}
|
||||||
$name = ' name="' . $this->name . '"';
|
|
||||||
$size = ' size="' . $this->size . '"';
|
$size = ' size="' . $this->size . '"';
|
||||||
$class = '';
|
$class = '';
|
||||||
if ($this->rightToLeftTextDirection) {
|
if ($this->rightToLeftTextDirection) {
|
||||||
|
|
Loading…
Reference in New Issue