#1050: Properly support the 'list' display style for external keys - as stated in the documentation!

SVN:trunk[3529]
This commit is contained in:
Denis Flaven
2015-04-03 08:26:39 +00:00
parent ebfc9aa1e0
commit 61a21520d1

View File

@@ -164,6 +164,7 @@ class UIExtKeyWidget
break;
case 'select':
case 'list':
default:
$sSelectMode = 'true';
@@ -302,7 +303,7 @@ EOF
EOF
);
}
if ($sDisplayStyle == 'select')
if (($sDisplayStyle == 'select') || ($sDisplayStyle == 'list'))
{
$sHTMLValue .= "<span id=\"v_{$this->iId}\"></span>";
}