Debug v20

This commit is contained in:
Laurent Destailleur 2024-06-05 23:49:09 +02:00
parent 6de472e242
commit ff2bd03584
2 changed files with 2 additions and 1 deletions

View File

@ -72,6 +72,7 @@ $arrayofia = array(
$item = $formSetup->newItem('AI_API_SERVICE'); // Name of constant must end with _KEY so it is encrypted when saved into database.
$item->setAsSelect($arrayofia);
$item->cssClass = 'minwidth150';
foreach ($arrayofia as $ia => $ialabel) {
// Setup conf AI_PUBLIC_INTERFACE_TOPIC

View File

@ -1106,7 +1106,7 @@ class FormSetupItem
if ($this->picto) {
$s .= img_picto('', $this->picto, 'class="pictofixedwidth"');
}
$s .= $this->form->selectarray($this->confKey, $this->fieldOptions, $this->fieldValue);
$s .= $this->form->selectarray($this->confKey, $this->fieldOptions, $this->fieldValue, 0, 0, 0, '', 0, 0, 0, '', $this->cssClass);
return $s;
}