Gossamer Forum
Home : Products : Gossamer Links : Development, Plugins and Globals :

exclude category in dropdown mene

Quote Reply
exclude category in dropdown mene
Hi, i want to exclude certain category in the dropdown menu of add.cgi
i added a column to category called isHidden ( wen set to yes, the category in hidden)
the i modified this global:

sub {
my $catid = shift;
my $table = $DB->table('Category');
my $return_cats;

$table->select_options ('ORDER BY Full_Name ASC');
my $cond = GT::SQL::Condition->new('isHidden','=','No');
my $sth = $table->select( $cond );

while (my $hit = $sth->fetchrow_hashref) {
$return_cats .= "<option value=\"" . $hit->{ID} . "\"";
if ($catid == $hit->{ID}) { $return_cats .= "selected=\"selected\""; }
$return_cats .= ">" . $hit->{Full_Name} . "</option>";
}

return $return_cats;
}

is works, as far as excluding categorys, but the results are in a continuous line and not in a dropdown format
i want it in a dropdown format
please help
Subject Author Views Date
Thread exclude category in dropdown mene ajiimd 3329 Aug 28, 2004, 11:19 PM
Thread Re: [ajiimd] exclude category in dropdown mene
ajiimd 3216 Aug 29, 2004, 1:43 PM
Thread Re: [ajiimd] exclude category in dropdown mene
ajiimd 3265 Aug 29, 2004, 6:44 PM
Post Re: [ajiimd] exclude category in dropdown mene
ajiimd 3214 Aug 31, 2004, 3:59 AM
Thread Re: [ajiimd] exclude category in dropdown mene
Andy 3198 Sep 4, 2004, 12:31 AM
Thread Re: [Andy] exclude category in dropdown mene
ajiimd 3194 Sep 4, 2004, 6:04 AM
Post Re: [ajiimd] exclude category in dropdown mene
Andy 3186 Sep 4, 2004, 7:51 AM