Increase number of lines multiselect Dhaslets filter

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 :grinning:

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