Allow Select options to be disabled

This commit is contained in:
Stephen Abello
2021-03-03 15:57:43 +01:00
parent c2c69d9f43
commit ad0fdfe921
3 changed files with 24 additions and 2 deletions

View File

@@ -21,7 +21,8 @@ class SelectOptionUIBlockFactory extends AbstractUIBlockFactory
$oInput->SetValue($sValue)
->SetLabel($sLabel)
->SetSelected($bSelected);
->SetSelected($bSelected)
->SetDisabled(false);
return $oInput;
}