Browse Source

BaseHtml::listBox() allow to remove size attribute

tags/2.0.0-beta
Alexander Kochetov 11 years ago
parent
commit
f645368e75
  1. 3
      framework/helpers/BaseHtml.php

3
framework/helpers/BaseHtml.php

@ -718,6 +718,9 @@ class BaseHtml
*/ */
public static function listBox($name, $selection = null, $items = [], $options = []) public static function listBox($name, $selection = null, $items = [], $options = [])
{ {
if (!array_key_exists($options, 'size')) {
$options['size'] = 4;
}
if (!empty($options['multiple']) && substr($name, -2) !== '[]') { if (!empty($options['multiple']) && substr($name, -2) !== '[]') {
$name .= '[]'; $name .= '[]';
} }

Loading…
Cancel
Save