checkboxes do not work

classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

checkboxes do not work

ilango_g
Hi
I have some strange behaviour for checkboxes with Yes and No. This is an XForm working inside the Intalio environment:

<xforms:instance id="taskinput">
        <fe:input>
          <Lab_Text xmlns="http://localhost/simple/xform" Label="Consultancy Services Requested ?" lang="en">
          <fe:Yes_Or_No name="Yes" value="Yes"/>
          <fe:Yes_Or_No name="No" value="No"/>
          </Lab_Text>             

         </fe:input>

</xforms:instance>

-----
--------

      <xhtml:div id="Lab_Text">
          <xforms:select ref="instance('taskinput')/fe:Lab_Text" appearance="full">
          <xforms:label>Consultancy Services Requested? </xforms:label>
                  <xforms:itemset nodeset="instance('taskinput')/fe:Lab_Text/fe:Yes_Or_No">
                  <xforms:label ref="@name"/>
          <xforms:value ref="@value"/>
          </xforms:itemset>
          </xforms:select>                       
         
       </xhtml:div>

-----

No Sooner than I check one of the boxes the checkboxes disappear. Is this some coding defect on my part? I am sure it has to be. Any suggestion is appreciated.