X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FPresenter%2FTag.pm;h=2b45d97d13ae960df1c8fc975ca64f6fb3355f25;hb=cf96c5880f1ba0694298d7541fedce47c8c99051;hp=3129437f353c2c3a8bebe0b6a64027e9fe3b981e;hpb=e8c5169fcec290c2eba99b90f22fd47db2047f75;p=kivitendo-erp.git diff --git a/SL/Presenter/Tag.pm b/SL/Presenter/Tag.pm index 3129437f3..2b45d97d1 100644 --- a/SL/Presenter/Tag.pm +++ b/SL/Presenter/Tag.pm @@ -111,6 +111,10 @@ sub select_tag { _set_id_attribute(\%attributes, $name); + $collection = [] if defined($collection) && !ref($collection) && ($collection eq ''); + + my $with_filter = delete($attributes{with_filter}); + my $fil_placeholder = delete($attributes{filter_placeholder}); my $value_key = delete($attributes{value_key}) || 'id'; my $title_key = delete($attributes{title_key}) || $value_key; my $default_key = delete($attributes{default_key}) || 'selected'; @@ -206,7 +210,28 @@ sub select_tag { } @{ $collection }; } - html_tag('select', $code, %attributes, name => $name); + my $select_html = html_tag('select', $code, %attributes, name => $name); + + if ($with_filter) { + my $input_style; + + if (($attributes{style} // '') =~ m{width: *(\d+) *px}i) { + $input_style = "width: " . ($1 - 22) . "px"; + } + + my $input_html = html_tag( + 'input', undef, + autocomplete => 'off', + type => 'text', + id => $attributes{id} . '_filter', + 'data-select-id' => $attributes{id}, + (placeholder => $fil_placeholder) x !!$fil_placeholder, + (style => $input_style) x !!$input_style, + ); + $select_html = html_tag('div', $input_html . $select_html, class => "filtered_select"); + } + + return $select_html; } sub checkbox_tag {