Details
-
Type: Improvement
-
Status: Done/Fixed
-
Priority: Minor
-
Resolution: Won't Fix
-
Affects Version/s: 4.4.9, 4.5.3
-
Fix Version/s: None
-
Component/s: Core CiviCRM
-
Labels:None
-
Documentation Required?:None
Description
In advmultiselect form fields, when their values are larger than the select container, they are not displayed whole.
As a workaround I applied a patch that adds a title to the option values that allows to view the full value of the field when you hover over the option.
file: /packages/HTML/QuickForm/advmultiselect.php
patch: line 785
. '<option' . ' title="' . $data['text'] . '" ' . $this->_getAttrString($data['attr']) . '>'
instead of
. '<option' . $this->_getAttrString($data['attr']) . '>'