corriger la gestion des groupes

This commit is contained in:
Jephté Clain 2024-10-14 12:15:00 +04:00
parent 4bc7a65c52
commit 8bdd704621
1 changed files with 4 additions and 2 deletions

View File

@ -133,6 +133,7 @@ class ControlSelect extends ControlVisual {
"value" => $noItemValue,
"text" => $noItemText,
"selected" => $value == $noItemValue,
"group" => false,
];
}
$haveGroups = $this->ppGroupKey !== null || $this->ppGroupFunc !== null;
@ -167,10 +168,11 @@ class ControlSelect extends ControlVisual {
$breaker = new Breaker();
$firstGroup = true;
foreach ($options as $option) {
if ($haveGroups && $breaker->shouldBreakOn($option["group"])) {
$group = $option["group"];
if ($haveGroups && $group !== false && $breaker->shouldBreakOn($group)) {
if ($firstGroup) $firstGroup = false;
else $control[] = v::end("optgroup");
$control[] = v::start("optgroup", ["label" => $option["group"]]);
$control[] = v::start("optgroup", ["label" => $group]);
}
$control[] = $this->ppOptionPrefix;
$control[] = v::tag("option", [