Hi
I am sorry, the size was hardcoded to 4. I will change it in the next version of the extension. For now, please follow the instruction below to change it :
1. Open the file components/com_pmform/helper/fields.php
2. Find the function
_renderMultiSelectOutput
3. In that function, find the code below :
Code:
echo JHTML::_('select.genericlist', $options, $row->name.'[]', ' multiple="multiple" size="4" ', 'value', 'text', $selectedValues);
Change it to :
Code:
echo JHTML::_('select.genericlist', $options, $row->name.'[]', ' multiple="multiple" size="7" ', 'value', 'text', $selectedValues);
After that, it will work as expected !
Regards,
Tuan