PRB: Cannot Clear Check Box on Palm Vx (309605)



The information in this article applies to:

  • Microsoft Mobile Internet Toolkit (MMIT)

This article was previously published under Q309605

SYMPTOMS

When you develop a mobile Web Form that contains a mobile SelectionList control, you can set the SelectType property to CheckBox so that a set of check boxes appears for items that are defined within the control. You can also set the Selected property to True on these items so that the check box is selected when the page is browsed.

However, when you browse to a mobile Web Form that contains a check box with the Selected property set to True, the Selected property is not applied on the Palm Vx handheld device with the Go.Web service from GoAmerica.

CAUSE

The Selected property generates a Checked property within an input tag on an HTML device. When you use Palm Vx with the Go.Web service, you cannot clear the check box when this property is set. Because you cannot clear the check box, the Microsoft Mobile Internet Toolkit run time does not send the Checked property to this device or browser configuration.

MORE INFORMATION

Steps to Reproduce the Behavior

  1. Add a mobile Web Form to a mobile Web Application project.
  2. In Mobile Designer, switch to HTML view.
  3. Add the following code between the <mobile form> tags:
       <mobile:SelectionList id="SelectionList1" runat="server" SelectType="CheckBox">
          <Item Value="A" Text="Item A"></Item>
          <Item Value="B" Text="Item B" Selected="True"></Item>
       </mobile:SelectionList>
    					
  4. Compile and view the page in the GoAmerica browser on Palm Vx. Notice that the second check box is not selected.
The third-party products that are discussed in this article are manufactured by companies that are independent of Microsoft. Microsoft makes no warranty, implied or otherwise, regarding the performance or reliability of these products.

Modification Type:MajorLast Reviewed:6/14/2002
Keywords:kbDeviceSpecific kbDSupport kbHTMLDevice kbprb KB309605