I have an check box control on an xapge bound to a field on a document. The value unchecked gets set to false. I would like it to be blank. How would I do this?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use the
uncheckedValueproperty of the check box setting it to blank value. Below is the sample code snippet.<xp:checkBox text="Label" id="checkBox1" value="#{document1.Checkbox}" uncheckedValue=""></xp:checkBox>This would save the blank value in the document. One caveat, via Domino Designer you cannot set this property to blank as it removes the property so you have to do this in source.