X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Felements%2Fselect-table.html;h=96f0177fbde9a127ba22f648bba4ed9dc0d48577;hp=10cc8b995073f8a13fde7bfeb054e541fee18eaa;hb=e65c6a26ca778166aec2b2d1dd3012ab84fa611a;hpb=29644d5921c99520965b884b25800ed084891e94 diff --git a/httemplate/elements/select-table.html b/httemplate/elements/select-table.html index 10cc8b995..96f0177fb 100644 --- a/httemplate/elements/select-table.html +++ b/httemplate/elements/select-table.html @@ -11,9 +11,12 @@ # 'empty_label' => '', #better specify it though, the default might change # 'hashref' => {}, # 'records' => \@records, #instead of hashref + # 'pre_options' => [ 'value' => 'option' ], #before normal options my( %opt ) = @_; + #warn "***** select-table: \n". Dumper(%opt); + my $key = dbdef->table($opt{'table'})->primary_key; #? $opt{'primary_key'} || my $name_col = $opt{'name_col'}; @@ -25,11 +28,17 @@ @records = qsearch( $opt{'table'}, ( $opt{'hashref'} || {} ) ); } + my @pre_options = $opt{'pre_options'} ? @{ $opt{'pre_options'} } : (); + %>