Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在绑定到文档字段的 xapge 上有一个复选框控件。未选中的值设置为 false。我希望它是空白的。我该怎么做?
您可以使用uncheckedValue复选框的属性将其设置为空白值。下面是示例代码片段。
uncheckedValue
<xp:checkBox text="Label" id="checkBox1" value="#{document1.Checkbox}" uncheckedValue=""></xp:checkBox>
这将保存文档中的空白值。需要注意的是,通过 Domino Designer,您不能将此属性设置为空白,因为它会删除该属性,因此您必须在源代码中执行此操作。