[richfaces] tabPanel erreur javascript sur IE7
bonjour,
erreur js bizard avec les onglets richfaces, je les utilise pour un menu de navigation; qd j'execute la page menu.jsf je n'ai pas d'erreur, par contre quand j'execute la page index.jsf qui inclu le menu j'ai une erreur javascript au chargement:
RichFaces indéfini, LOG indéfini
menu.xhtml >
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
<ui:composition xmlns="http://www.w3.org/1999/xhtm"
xmlns:ui="http://java.sun.com/jsf/facelet"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:a4j="https://ajax4jsf.dev.java.net/ajax"
xmlns:rich="http://richfaces.ajax4jsf.org/rich">
<rich:panel>
<f:facet name="header">
<h:outputText value="TEST"></h:outputText>
</f:facet>
<h:form>
<rich:tabPanel switchType="client">
<rich:tab label="First">
<h:outputText value="Here is tab#1" />
</rich:tab>
<rich:tab label="Second">
<h:outputText value="Here is tab#2" />
</rich:tab>
<rich:tab label="Third">
<h:outputText value="Here is tab#3" />
</rich:tab>
</rich:tabPanel>
<a4j:log popup="false" level="ALL" style="width: 800px; height: 300px;"></a4j:log>
</h:form>
</rich:panel>
</ui:composition> |