jsf下拉列表默认选择值
accpcj
2009-11-17
我有一个下拉列表,想让好,进入页面的时候直接选择“否”这个字段,该在哪里添加什么属性?希望告知,谢谢!
<h:selectOneListbox required="false" value="#{bySampleList.printState}" size="1"> <f:selectItem itemLabel="全部" itemValue=""/> <f:selectItem itemLabel="否" itemValue="0"/> <f:selectItem itemLabel="是" itemValue="1"/> </h:selectOneListbox> 现在进入页面是: 全部 ---默认选择 否 是 我想要的是: 全部 否 ---默认选择 是 排列不改变,如何实现? |
|
terryzhou
2009-11-18
bySampleList.printState置为0就是默认选"否"
bySampleList.printState置为1就是默认选"是" get it? |
|
accpcj
2009-11-24
谢谢,已经解决,正如你说的那样。我在类里面声明的地方同时赋给一个初期值。
|