X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Felements%2Fselect-table.html;h=e7363880165ab6f8a7ab15d2f464c88d686cee97;hp=42e91f00c065d2e1b5619218ea1d6b79314e37d0;hb=69bdaccf38c8f1b7471ff13354ccbcbb6aa20096;hpb=854299338fd5d9f231f47202ef1b37c46f1d1d6c diff --git a/httemplate/elements/select-table.html b/httemplate/elements/select-table.html index 42e91f00c..e73638801 100644 --- a/httemplate/elements/select-table.html +++ b/httemplate/elements/select-table.html @@ -37,6 +37,7 @@ Example: 'post_options' => [ 'value' => 'option' ], #after normal options 'empty_label' => '', #better specify it though, the default might change 'multiple' => 0, # bool + 'all_selected' => 0, # useful with multiple 'disable_empty' => 0, # bool (implied by multiple) 'label_showkey' => 0, # bool 'label_callback' => sub { my $record = shift; return "label"; }, @@ -69,14 +70,16 @@ Example: NAME = "<% $opt{'element_name'} || $opt{'field'} || $key %>" ID = "<% $opt{'id'} || $key %>" <% $onchange %> + <% $size %> <% $opt{'element_etc'} %> > % while ( @pre_options ) { % my $pre_opt = shift(@pre_options); % my $pre_label = shift(@pre_options); -% my $selected = ( ref($value) && $value->{$pre_opt} ) -% || ( $value eq $pre_opt ); +% my $selected = $opt{'all_selected'} +% || ( ref($value) && $value->{$pre_opt} ) +% || ( $value eq $pre_opt );