in reply to cgi checkbox_group in table
This will let you have your item names and checkboxes that correspond with them in the same cell of the table. This should take care of your alignment problem.my @values; my %labels; foreach(1..10) { $values[$_] = $_; $labels{$_} = "Item $_"; } $colgroup = $cgi->checkbox_group( -name=>'embl_group', -values=>\@values, -labels=>\%labels, -linebreak=>'true' );
Hope this helps!
MrCromeDome
|
|---|