Olá… estou tentando fazer o dojo funcionar com o facelets, existem alguns componentes prontos do myfaces do Tomahawk e do Sandbox (componentes beta), o sandbox possui alguns componentes prontos mas nem todos, alguns eu tenho q usar o dojoInitializer do Tomahawk, o problema é que alguns desses componentes inclui algumas propriedades na tag
e o parse do facelets não aceita.
Será que existe uma maneira de contornar isso
Será que existe uma maneira de contornar isso
Codigo.
<?xml version="1.0" encoding="ISO-8859-1" ?>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:c="http://java.sun.com/jstl/core"
xmlns:t="http://myfaces.apache.org/tomahawk"
xmlns:s="http://myfaces.apache.org/sandbox"
xmlns:ui="http://java.sun.com/jsf/facelets"
>
<head>
</head>
<body>
<form jsfc="h:form" id="myForm">
<s:floatingPane id="formCliente"
title="Clientes"
hasShadow="true"
resizable="true"
displayMinimizeAction="true"
displayCloseAction="true"
taskBarId="testid">
<h:outputText value="codigo"/>
<h:inputText/>
<h:outputText value="descricao"/>
</s:floatingPane>
<t:dojoInitializer dojo.require="dojo.widget.FloatingPane"/>
<f:verbatim>
<div dojoType="TaskBar" id="testid" hasShadow="true"
resizable="false";
style="width: 90%; height: 40px;margin: 0px; padding:0px; bottom: 20px; left: 5%; overflow: hidden;">
</div>
<f:verbatim>
</form>
</body>
</html>