Re: [ACFUG Discuss] Images as Checkboxes

2009-04-16 Thread Dusty Hale
I did this years ago using JavaScript. I don't have that code handy but I can sort of explain it: You use the onclick event handler in JS to swap the images out and set a JS variable to true or false and then also use JS to submit and pass that variable along. Dusty On Fri, Mar 27, 2009 at 2:38

RE: [ACFUG Discuss] Images as Checkboxes

2009-04-03 Thread Cody Wehunt
Thank you. From: ad...@acfug.org [mailto:ad...@acfug.org] On Behalf Of Steve Ross Sent: Tuesday, March 31, 2009 2:13 PM To: discussion@acfug.org Subject: Re: [ACFUG Discuss] Images as Checkboxes use prototype or jquery and you won't have to deal with browser issues as much...

RE: [ACFUG Discuss] Images as Checkboxes

2009-04-03 Thread Cody Wehunt
Ok thanks, will see how it goes. From: ad...@acfug.org [mailto:ad...@acfug.org] On Behalf Of Dawn Hoagland Sent: Friday, March 27, 2009 7:49 PM To: discussion@acfug.org Subject: Re: [ACFUG Discuss] Images as Checkboxes Done it, and toggling with JS is how I did it. I don't hav

Re: [ACFUG Discuss] Images as Checkboxes

2009-03-31 Thread Steve Ross
use prototype or jquery and you won't have to deal with browser issues as much... plus all the helper functions that you need are pretty much there. On Fri, Mar 27, 2009 at 7:48 PM, Dawn Hoagland wrote: > Done it, and toggling with JS is how I did it. I don't have the sourcecode > (did this quit

Re: [ACFUG Discuss] Images as Checkboxes

2009-03-27 Thread Dawn Hoagland
Done it, and toggling with JS is how I did it. I don't have the sourcecode (did this quite a while ago), but I don't recall it being particularly tricky. I did have the luxury of dictating the browser Dawn On Fri, Mar 27, 2009 at 5:20 PM, Douglas Knudsen wrote: > look no further than GMail

Re: [ACFUG Discuss] Images as Checkboxes

2009-03-27 Thread Douglas Knudsen
look no further than GMail for a example :) On a slow connection, you can actually see each check box loading. Basically just toggle the src in JS, eh? Douglas Knudsen http://www.cubicleman.com this is my signature, like it? On Fri, Mar 27, 2009 at 2:38 PM, Cody Wehunt wrote: > I was think