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;
}
}