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.
我有一个微调器,用户必须在其中选择一年。加载页面时,微调器的默认值为minValue屏幕上的 ,但在 backing-bean 中该值为 null。
minValue
我需要在第一次加载页面时使用微调器的默认值 (minValue) 呈现一些信息。
怎么做?
干杯
类似的东西
由于您知道页面首次加载时 spinnerValue 为 null ,因此您可以 h:panelGroup(例如)基于该条件进行渲染
h:panelGroup
<h:panelGroup id="renderMe" rendered="#{myBean.spinnerValue eq null}"> some text... </h:pamelGroup>
?