View Single Post
  #1 (permalink)  
Old 02-13-2007, 01:49 AM
jiggy jiggy is offline
Active Member
 
Posts: 32
Default Query regarding userProperties element's property's child element

Hello,

The below code snippet is not working properly in <userProperties> element.
Instead of radio buttons it is getting displayed as textfields with values male and married respectively.Also the date is displayed as a long horizontal bar with a dropdown button.When clciking that dropdown button a calendar gets popped up but behind the form.

Please help me in rectifying these things....

Code:
  <property type="date" name="dob" visible="true" />
   <property type="radio" name="gender" label="Gender" visible="true">
				<item label="Male" value="true"  />
				<item label="Female" value="false"  />
   </property>
   <property type="radio" name="maritalStatus" label="Marital Status" visible="true">
				<item label="Married" value="false"  />
				<item label="Unmarried" value="true" />
   </property>

Thanks

Last edited by jiggy; 02-13-2007 at 04:10 AM..
Reply With Quote