Hi,
I am trying to develop an JSF 1.2 / facelets / RichFaces application and I’d love to have code assist for RichFaces tags… Because of facelets I’m using XHTML files with header like this:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:rich="http://richfaces.ajax4jsf.org/rich"
>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>ExampleWeb - JSF and RichFaces Sandbox</title>
<link href="/exampleWeb/sandbox.css" rel="stylesheet" type="text/css" />
</head>
<f:view>
<body>
...
</body>
</f:view>
</html>
Can I somehow attach richfaces TLD in such a way that code assist would work? I would greatly appreciate any assistance.
Wojtek