- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
如何让 selectOneRadio 带有默认选择的 noSelectionOption?
我有以下内容:
<p:selectOneRadio>
<f:selectItem itemLabel="none" noSelectionOption="true"/>
<f:selectItems value="#{bean.anything}"/>
</p:selectOneRadio>
我想默认选择“无”吗?我怎么做?由于
没有“选定”属性最佳答案
使用 null
值绑定(bind)到您的 View 的托管 bean 字段,也使用 null
值使用未选择的选项。
JSF 部分:
<p:selectOneRadio value="#{bean.foo}">
<f:selectItem itemLabel="none" itemValue="#{null}" noSelectionOption="true"/>
<f:selectItems value="#{bean.anything}"/>
</p:selectOneRadio>
托管 bean 代码:
@ManagedBean
@RequestScoped
public class Bean {
//its value by default will be null
private String foo;
//getters and setters...
}
关于java - 选择了 noSelectionOption 的 Primefaces SelectOneRadio,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21555953/
这个问题在这里已经有了答案: Best way to add a "nothing selected" option to a selectOneMenu in JSF (3 个回答) 3个月前关闭。
在“创建新用户”jsf 页面中,我有一个带有自定义转换器的 SelectOneMenu 和一个 noSelectionOption selectItem,如下所示:(省略了不相关的代码) 新用户.xh
我目前正在测试 的使用f:selectItems 使用现有 POJO 类的标记。 这工作正常: 面: 托管 bean : private HeroBean oneSelectMenuPo
如何让 selectOneRadio 带有默认选择的 noSelectionOption? 我有以下内容: 我想默认选择“无”吗?我怎么做?由于 没有“选定”属性 最佳答案 使
添加p:selectOneMenu时,f:selectItem选择存在问题。 看法: 模型: private List allNames; private String sel
我是一名优秀的程序员,十分优秀!