Im using PrimeFaces 3.5 with PrimeFaces Extensions 0.7.0 and OmniFaces version 1.4
I have a accordionPanel with ui: the witch fragment looks like this:
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:p="http://primefaces.org/ui"
xmlns:pe="http://primefaces.org/ui/extensions">
<ui:fragment>
<f:metadata>
<f:event type="javax.faces.event.PreRenderViewEvent" listener="#{fleet.preRenderView()}" />
</f:metadata>
<p:dialog id="createSubFleetDialog" widgetVar="createSubFleet"
header="#{msg.administration_fleet_createFleetDialog_title}">
<h:panelGrid id="createSubFleetPanel" columns="2">
<h:outputLabel for="newFleetName" value="#{msg.administration_fleet_fleetName}" />
<p:inputText id="newFleetName" value="#{fleet.fleetName}">
<pe:keyFilter mask="alphanum"></pe:keyFilter>
</p:inputText>
</h:panelGrid>
</p:dialog>
</ui:fragment>
</html>
There are no warnings or errors in eclipse, but a browser error occurs when starting my application
: Not prepared ReferenceError: PrimeFacesExt not defined
Does anyone know how to solve this problem?
source
share