gpt4 book ai didi

css - Primefaces 5 selectOneMenu 在 tabView 中渲染不正确

转载 作者:行者123 更新时间:2023-11-28 06:32:27 24 4
gpt4 key购买 nike

我在 PF tabView 中有一个 selectOne 菜单:

<ui:composition template="./../../../ClientSimple.xhtml">

<ui:define name="top">
<h2>Public Cloud Menu</h2>
</ui:define>
<ui:define name="content">
<h:form id="treelist">
<p:tabView>
<p:tab id="dattab" title="Data">
<p:selectOneMenu id="datmen" value="#{clientDataBean.marketid}">
<f:selectItems value="#{marketbean.allMarksNorm}" var="mark"
itemLabel="#{mark.marketname}"
itemValue="#{mark.marketid}"/>
</p:selectOneMenu>
</p:tab>
</p:tabView>
</h:form>
</ui:define>
</ui:composition>

View 完全扭曲,菜单的顶部出现在页面顶部,菜单的其余部分出现在底部。

如果我更改为 h:selectOneMenu 一切都会完美呈现,但我更愿意使用 PF 组件。模板页面是:

<h:head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<h:outputStylesheet name="./css/default.css"/>
<h:outputStylesheet name="./css/cssLayout.css"/>
<h:outputStylesheet name="./css/paceradar.css"/>
<h:outputStylesheet name="/css/paceradar.css"/>
<h:outputScript name="/js/pace.js"/>

<h:form>
<title>Client Module</title>
<p:panel style="text-align: right;">
<p:commandLink value="#{secBean.username}" style="margin-left: 10px;"
action="#{secBean.showProfiles}"
rendered="#{secBean.showUser}"
/>
<p:spacer width="40"/>
<p:commandLink id="loginbutt" value="Login" action="#{secBean.loginForm}"
process="loginbutt"
rendered="#{secBean.login}"/>
<p:commandLink id="logout" value="Logout" action="#{secBean.logout}"
process="logout"
rendered="#{secBean.showUser}"/>
</p:panel>
<h:link outcome="/EnliteWelcome.xhtml">
<p:graphicImage value="/resources/images/logo.png" />
</h:link>
</h:form>
</h:head>

<h:body>
<div id="top">
<ui:insert name="top">Top</ui:insert>
</div>
<div id="content">
<ui:insert name="content">Content</ui:insert>
</div>
</h:body>

最佳答案

出于某种奇怪的原因,删除模板页面中的面板标签可以解决问题。我无法通过检查页面找到任何 css 冲突。我首先想到面板可能会溢出并弄乱边距。我修改了“溢出”,将其设置为隐藏并尝试不同的设置,但这并没有解决任何问题。问题解决了,但我不明白为什么面板是罪魁祸首。

    <h:form>
<title>Client Module</title>

<p:commandLink value="#{secBean.username}" style="margin-left: 10px;"
action="#{secBean.showProfiles}"
rendered="#{secBean.showUser}"
/>
<p:spacer width="40"/>
<p:commandLink id="loginbutt" value="Login" action="#{secBean.loginForm}"
process="loginbutt"
rendered="#{secBean.login}"/>
<p:commandLink id="logout" value="Logout" action="#{secBean.logout}"
process="logout"
rendered="#{secBean.showUser}"/>

<h:link outcome="/EnliteWelcome.xhtml">
<p:graphicImage value="/resources/images/logo.png" />
</h:link>
</h:form>

关于css - Primefaces 5 selectOneMenu 在 tabView 中渲染不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34895368/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com