Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ecplise autocomplete primefaces tags [duplicate]

I am using Eclipse to work with PrimeFaces like this:

<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:f="http://java.sun.com/jsf/core"
 xmlns:p="http://primefaces.prime.com.tr/ui" 
 template="/template/ui.xhtml">

I saw Bozho question and answer.

So it works for me only for h and f tags and not for p (primefaces) tag! How can it autocomplete primefaces tag?

like image 320
Dejell Avatar asked Oct 30 '10 20:10

Dejell


2 Answers

I've blogged about Helios support, that might help;

http://cagataycivici.wordpress.com/2010/08/31/primefaces-support-in-eclipse-helios/

like image 139
Cagatay Civici Avatar answered Sep 30 '22 21:09

Cagatay Civici


I had the same problem and none of the solutions posted solved (i already had primefaces jar in my classpath).

I use a eclipse project format, and in the .settings folder, the file "org.eclipse.wst.common.project.facet.core.xml" had this properties:

<installed facet="jst.jsf" version="1.2"/>
<installed facet="jst.web" version="2.5"/>

I changed to:

<installed facet="jst.jsf" version="2.0"/>
<installed facet="jst.web" version="3.0"/>

And it worked. Sure it was a wrong configuration, but can be useful to someone. Ps: these properties can be changed in project facets on eclipse project properties, but in some cases it´s better change directly in the file.

like image 43
Ronaldo Campos Avatar answered Sep 30 '22 21:09

Ronaldo Campos