diff options
-rw-r--r-- | httemplate/edit/elements/edit.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/httemplate/edit/elements/edit.html b/httemplate/edit/elements/edit.html index 3896f1712..0250153c1 100644 --- a/httemplate/edit/elements/edit.html +++ b/httemplate/edit/elements/edit.html @@ -216,7 +216,6 @@ Example: % #select(-*) % 'options' => $f->{'options'}, % 'labels' => $f->{'labels'}, -% 'empty_label' => $f->{'empty_label'}, % 'multiple' => $f->{'multiple'}, % 'disable_empty' => $f->{'disable_empty'}, % #select-reason @@ -231,6 +230,10 @@ Example: % 'disabled' => $f->{'disabled'}, % ); % +% #select-* +% $include_common{$_} = $f->{$_} +% foreach grep exists($f->{$_}), qw( empty_label ); +% % #select-table, checkboxes-table % $include_common{$_} = $f->{$_} % foreach grep exists($f->{$_}), qw( table name_col ); |