Re: formatting tables generated by checkbox_group()

2007-11-27 Thread Sean Davis
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

formatting tables generated by checkbox_group()

2007-11-26 Thread neil
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' ],

RE: Checkbox_group

2004-06-16 Thread Bob Showalter
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

Re: Checkbox_group

2004-06-16 Thread Apryle Weissmann
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

Re: Checkbox_group

2004-06-16 Thread William McKee
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

Checkbox_group

2004-06-16 Thread Werner Otto
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(