On Nov 26, 2007 5:10 PM, neil <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I was wondering if its possible to get the class="" field passed to
> the tables generated by checkbox_group()?
Not a direct answer to your question, but you will want to move away
from using CGI to g
Hi,
I was wondering if its possible to get the class="" field passed to
the tables generated by checkbox_group()?
For example, I have the following code
$q -> checkbox_group(-name=>'GroupingOptions', -values=> [ '--
bySex', '--byFamily' ],
Werner Otto wrote:
> What I'm trying to do:
> print checkbox_group(-name=>'hdel',-values=>[$hostname,$hostip]),;
>
> But I don't want $hostip's value to appear on the form, it should be
> available when I request the param though.
Are to trying to sh
please remove me from the mail list. thank you, Apryle Weissmann
William McKee wrote:
> On Wed, Jun 16, 2004 at 11:59:02AM +0100, Werner Otto wrote:
> > Any ideas?
>
> Here's an untested idea as I've never had a need to do this. Create a
> hidden field with the name 'hdel' and insert the $hostip
On Wed, Jun 16, 2004 at 11:59:02AM +0100, Werner Otto wrote:
> Any ideas?
Here's an untested idea as I've never had a need to do this. Create a
hidden field with the name 'hdel' and insert the $hostip value in there.
I would expect that when you request the 'hdel' parameter from CGI, that
it would
Hi there,
I read a few pieces of documentation on this: Is there any way that I
could add another value, which will be hidden from the user interface?
Current snippet:
print checkbox_group(-name=>'hdel',-values=>[$hostname]),;
What I'm trying to do:
print checkbox_group(