1

ドック メニューを使用しようとしていますが、機能しません。(画像は表示されますが、マウスを上に移動してもズームしません)。私のページの中央のレイアウトユニットでそれを使用して、ドックを実際に含む別のページを挿入したいと考えています。コードは次のようになります。

template.xhtml

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:p="http://primefaces.org/ui"
    xmlns:f="http://java.sun.com/jsf/core">

<h:head>
    <style type="text/css">
        body.ui-layout-container { background-color: cadetblue;}
    </style>
</h:head>
<h:body>
    <p:layout fullPage="true" resizeTitle="resize">
        <p:layoutUnit position="north" id="north" resizable="false" size ="75">
            <ui:include src="header.xhtml" />
        </p:layoutUnit>

        <p:layoutUnit position="west" id="west" resizable="false" style="height:580px;overflow:hidden;" size="180">
            <ui:include src="menu.xhtml" />
        </p:layoutUnit>

        <**p:layoutUnit styleClass="layoutUnitCenter" position="center">
                 !!Here I insert the page which contains the dock
                <ui:insert name="content" />
        </p:layoutUnit>**

        <p:layoutUnit position="south" resizable="true" id="south" size="40">
            <ui:include src="footer.xhtml" />
        </p:layoutUnit>

    </p:layout>
</h:body>
</html>

ドック.xhtml

<ui:composition xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:p="http://primefaces.org/ui"
    xmlns:f="http://java.sun.com/jsf/core"
    template="template.xhtml">   

 <ui:define name="content">
    <h:head>
    </h:head>
    <h:body>
         <h:form>
           <p:dock position="top">  
                   <p:menuitem value="teachers" icon="/images/dock/teacher.png" url="#"/>  
                   <p:menuitem value="students" icon="/images/dock/student.png" url="#"/>  
                   <p:menuitem value="parents" icon="/images/dock/parent.png" url="#"/>  
           </p:dock> 
       </h:form>
    </h:body>
</ui:define>
</ui:composition>

ui:composition なしで、dock.xhtml を単独で使用しようとしましたが、問題なく動作します。しかし、このように使用しようとすると、画像が表示されるだけでt do anything when I move the mouse over the images. Another problem is that it doesn、ドックが領域の中央に配置されません。少し左寄りに配置しています。私はjsfとPrimefacesにかなり慣れていないので、どんな答えでも役立つかもしれません.

4

1 に答える 1