hello all how can I increase the number of rows multiselect Dhaslets filter with so many users it is inconvenient to configure the filters
from 3 to 5 or more rows?
Thanks
Blockquote
I find the solution
./include/generic/SugarWidgets/SugarWidgetFielduser_name.php
class SugarWidgetFielduser_name extends SugarWidgetFieldname
{
public function displayInput($layout_def)
{
$selected_users = empty($layout_def[‘input_name0’]) ? ‘’ : $layout_def[‘input_name0’];
$str = ‘’ . get_select_options_with_id(get_user_array(false), $selected_users) . ‘’;
return $str;
}
}