in reply to Re: Formatting labels of checkbox groups
in thread Formatting labels of checkbox groups
I've tried to generate the checkboxes one at a time like in your second example.
CGI::checkbox(-name => 'the_group', -value => $value, -label =>'')
Now what i require is something similar to...
now what i'd expect from the web page is a checkbox with a label that has each part split by 4 spaces.$some_spaces = " " #here are 4 spaces. $my_label = $title . $some_spaces . $description . $somespaces . $more +text # the variables above just represent some basic information CGI::checkbox(-name => 'the_group', -value => $value, -label =>$my_lab +el)
thanks
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Formatting labels of checkbox groups
by Zed_Lopez (Chaplain) on Aug 16, 2004 at 06:31 UTC | |
by lcanty (Friar) on Aug 16, 2004 at 07:09 UTC | |
by Zed_Lopez (Chaplain) on Aug 16, 2004 at 07:21 UTC |