When I was using .jsp file in eclipse was giving me help for tags...
Where I was adding taglibs...
<%@ taglib prefix="h" uri="http://java.sun.com/jsf/html" %>
<%@ taglib prefix="f" uri="http://java.sun.com/jsf/core" %>
Now I converted .jsp
to .xhtml
in which I can't add above taglibs instead I have to use
<html xmlns="http://www.w3c.org/1999/xhtml"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:p="http://primefaces.prime.com.tr/ui">
In this case eclipse doesn't give me any help on CTRL + Space. Is there any way to start those help?