关于JSF标签自动换行的问题
ajian528
2010-05-25
<h:outputLabel for="psta" value="#{bundle.psta}" />
<h:selectOneRadio id="relation" value="#{testAction.selectpattern.relation}"> <f:selectItem itemLabel=">=" itemValue="gt=" /> <f:selectItem itemLabel="<=" itemValue="lt=" /> </h:selectOneRadio> <h:inputText id="psta" value="#{testAction.selectpattern.psta}" /> 以上这段代码显示在页面上的样子很难看,主要是加上<h:selectOneRadio>两个单选按钮。这两个单选按钮怎么都要单独在一行。有什么办法让这两个单选按钮和前面的lable,后面的inputtext在一行显示吗? |
|
terryzhou
2010-05-25
panelGrid,panelgroup,用表格
|