The ComboBox used in Xpages can only be selected by default and cannot be entered manually, how can I enter it manually? After looking for information and testing, and finally, please, you can try
If you don't try, you can download the demo http://download.csdn.net/detail/weijia3624/8494803
1) in the resources to add the following content
<xp:this.resources> <xp:dojomodule name= "Dijit.form.ComboBox" rendered= "true" > </xp:dojoModule> </xp:this.resources>
2) in the ComboBox to refer to dojotype="Dijit.form.ComboBox"disablevalidators= "true"
<xp:combobox id= "ComboBox1" value= "#{sessionscope.test}" dojotype= "Dijit.form.ComboBox " Disablevalidators= "true" > <xp:selectitem itemlabel= "abc" ></xp:selectItem> <xp: SelectItem itemlabel= "def" ></xp:selectItem> <xp:selectitem itemlabel= "xyz" ></xp:selectitem > </xp:comboBox>
Xpages's ComboBox can be entered manually