From eb061f5119325e666f0dff40d4089e5c1df58e17 Mon Sep 17 00:00:00 2001 From: cvs2git Date: Sun, 16 Mar 2008 19:58:34 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'TRIXBOX_2_6'. --- httemplate/elements/select-table.html | 114 ---------------------------------- 1 file changed, 114 deletions(-) delete mode 100644 httemplate/elements/select-table.html (limited to 'httemplate/elements/select-table.html') diff --git a/httemplate/elements/select-table.html b/httemplate/elements/select-table.html deleted file mode 100644 index 8bcbf2504..000000000 --- a/httemplate/elements/select-table.html +++ /dev/null @@ -1,114 +0,0 @@ -<%doc> - -Example: - - include( '/elements/select-table.html', - - #required - 'table' => 'table_name', - 'name_col' => 'name_column', - - #strongly recommended (you want your forms to be "sticky" on errors, right?) - 'curr_value' => 'current_value', - #'value' => #deprecated form of 'curr_value', - - #opt - 'empty_label' => '', #better specify it though, the default might change - 'hashref' => {}, - 'extra_sql' => '', - 'records' => \@records, #instead of hashref - 'pre_options' => [ 'value' => 'option' ], #before normal options - 'element_name' => '', #HTML element name, defaults to the name of - # the primary key column - 'field' => '', #synonym for element_name - 'element_etc' => '', #additional attributes (i.e. "DISABLED") for the - # - NAME = "<% $opt{'element_name'} || $opt{'field'} || $key %>" - <% $onchange %> - <% $opt{'element_etc'} %> -> - -% while ( @pre_options ) { -