I have been using RAD/WebSphere successfully with the default JSF library but am going to be working on a project that uses PrimeFaces..I have downloaded the jar file and went to the buildpath and added the external jar. I do have the tags right in my code, I believe, as it is the test code from the PrimeFaces website documentation.
I have downloaded the jar file and went to the buildpath and added the external jar. I do have the tags right in my code, I believe, as it is the test code from the PrimeFaces website documentation.
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:p="http://primefaces.org/ui" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html">
<h:head>
<title>index</title>
<meta http-equiv="Content-Type"
content="application/xhtml+xml; charset=UTF-8" />
</h:head>
<h:body>
<p:spinner />
</h:body>
</html>
The file runs blank but with no errors. I can run other files on the localhost server that work fine. Everything I found on how to fix it says to just add the jar file via the build classpath and it should work. The webpage loads no errors but the "problems" view in RAD says the Jar file will not be exported of published. What am I missing?
Floating Label