ICEfaces MenuBar水平方向不起作用

时间:2011-10-30 20:24:58

标签: jsf java-ee jsf-2 icefaces

我正在使用iceFaces 2.0.2 这就是我所做的:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:pretty="http://ocpsoft.com/prettyfaces"
    xmlns:ice="http://www.icesoft.com/icefaces/component">

    <head>
        <meta http-equiv="Content-Type"
        content="text/html; charset=iso-8859-1"></meta>
        <link href="./xmlhttp/css/xp/xp.css" rel="stylesheet" type="text/css"/>
    </head>

<body>
    <ui:composition>


        <h1>
            <h:outputText value="my application" />
        </h1>

        <pretty:link mappingId="link">
                   some link
          </pretty:link>



             <ice:menuBar id="menuBar" orientation="Horizontal">
            <ice:menuItem value="menuItem"></ice:menuItem>
            <ice:menuItem value="menuItem2"></ice:menuItem>
          </ice:menuBar>


    </ui:composition>

</body>

</html>

上面是一个用facelets制作的头文件,菜单项垂直显示,请告知为什么水平方向不起作用?

3 个答案:

答案 0 :(得分:2)

  • 水平方向是默认的,因此您无需明确指定。

  • 如果必须定义,请尝试以小写形式定义。

  • 请确保您使用的是正确的CSS。

答案 1 :(得分:1)

通过给菜单栏提供影响定位的 css类,这是我的错误。

答案 2 :(得分:0)

您必须在Google Chrome上测试您的网页,方向才有效。我在使用FireFox和IE时遇到了同样的问题,但谷歌浏览器却没有。可能是一个冰面虫。