【发布时间】:2015-11-03 22:24:37
【问题描述】:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE html>
<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:jsf="http://xmlns.jcp.org/jsf"
xmlns:c="http://xmlns.jcp.org/jsf/core"
xmlns:f="http://java.sun.com/jsp/jstl/core"
xmlns:rich="http://richfaces.org/rich"
xmlns:a4j="http://richfaces.org/a4j"
xmlns:pe="http://primefaces.org/ui/extensions"
xmlns:gestenis="http://gestenis.com/jsf/facelets">
<c:view>
<body jsf:id="staffBody">
<a4j:form id="pfform" >
<h:panelGrid>
<rich:tabPanel switchType="ajax">
<rich:tab label="First">
Here is tab #1
</rich:tab>
<rich:tab label="Second">
Here is tab #2
</rich:tab>
<rich:tab label="Third">
Here is tab #3
</rich:tab>
</rich:tabPanel>
....
结果是:
这是标签 #1 这是标签 #2 这是标签 #3
全部在一行中,因此无法正确渲染
有什么想法吗?
谢谢
【问题讨论】:
-
所以你所做的一切都像他们的现场演示一样,你得到了不同的结果? livedemo.exadel.com/richfaces-demo/richfaces/tabPanel.jsf
-
我现在也有同样的问题!