X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Felements%2Fselect-table.html;h=3f6c8805d0e1ab6aa122a013579e5b57d2a2bb55;hb=715120170b58861d2957266a2802df2e412979c8;hp=c0dde74147eb1df67743b574f610326942c73c52;hpb=fb4ab1073f0d15d660c6cdc4e07afebf68ef3924;p=freeside.git diff --git a/httemplate/elements/select-table.html b/httemplate/elements/select-table.html index c0dde7414..3f6c8805d 100644 --- a/httemplate/elements/select-table.html +++ b/httemplate/elements/select-table.html @@ -8,7 +8,8 @@ Example: # required ## 'table' => 'table_name', - 'name_col' => 'name_column', + 'name_col' => 'name_column', #or method if you pass an order_by + # order_by is currently broken, though #strongly recommended (you want your forms to be "sticky" on errors, right?) 'curr_value' => 'current_value', @@ -37,6 +38,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 +71,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 );