I am creating a web app targeting smartphones. One of the pages
contain a list of options associated with a product. The list of
options include packages/bundles, so that if an individual clicks on a
package, the options that make up that package are automatically
selected. I created a simple test page containing a checkbox with an
onclick event that calls a javascript function which checks a different
checkbox. I tested it on a IE and it works fine. However when I test
it on PocketPC2002 and SmartPhone2003, nothing happens.

Here is the function that the onclick event calls:

function checkit()
{
Form1.cb_Test.checked = true;
}

I also tried it using the following:

function checkit()
{
Form1.cb_Test.click();
}


Is this even possible or do I have to use server side?

Thanks in advance.
Roger

Re: Javascript. Checkbox Onclick Event by rwoo_98

rwoo_98
Mon Sep 19 14:56:21 CDT 2005

never mind. when testing, i had pushed the wrong file.