X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Felements%2Fselect-table.html;h=a52fdfaaa505692ac8a0b5ffd22668eafeca0d59;hp=741e51e494e3a8630ac1e59e39c3667c080a33d8;hb=d2b55d07a9e6e64a38877136d7974ab93e14f1ed;hpb=ea3c94b9862524f0d17931e77bf3955bac5ad83f diff --git a/httemplate/elements/select-table.html b/httemplate/elements/select-table.html index 741e51e49..a52fdfaaa 100644 --- a/httemplate/elements/select-table.html +++ b/httemplate/elements/select-table.html @@ -8,7 +8,7 @@ Example: # required ## 'table' => 'table_name', - 'name_col' => 'name_column', + 'name_col' => 'name_column', #or method if you pass an order_by #strongly recommended (you want your forms to be "sticky" on errors, right?) 'curr_value' => 'current_value', @@ -28,6 +28,7 @@ Example: 'agent_null_right' => '', #right to see un-agented entries #or 'records' => \@records, #instead of search params + 'presorted' => 0, #set true to disable sorting the records on name_col #instead of the primary key... only for special cases 'value_col' => 'columnname', @@ -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 );