Galera,
estou utilizando struts 2 para minha aplicação e no momento que utilizo algum recurso ajax o mesmo me retorna um erro cobrando a seguinte biblioteca:
dojo.widget.html.Tooltip
alguém já passou por isso? segue o código:
<%@include file="import.jsp"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<link type="text/css" rel="StyleSheet" href="css/style.css" />
<title>Cadastro de RCBP's</title>
<s:head theme="ajax" />
</head>
<body>
<fieldset>
<legend>Cadastro de RCBP's</legend>
<s:if test="hasErrors()">
<b>Erros:</b>
<s:fielderror />
</s:if>
<s:form action="salvarRCBP!salvar" method="post" id="formCategoria" validate="true" theme="ajax">
<span class="titulo">Documentação</span>
<s:textfield name="rcbp.nomeInstituicao" value="%{rcbp.nomeInstituicao}" label="Nome" size="40" />
<s:textfield name="rcbp.emailInstituicao" value="%{rcbp.emailInstituicao}" label="Email" size="30" />
<s:textfield name="rcbp.cnesInstituicao" value="%{rcbp.cnesInstituicao}" label="CNES" size="20" />
<s:textfield name="rcbp.cnpjInstituicao" value="%{rcbp.cnpjInstituicao}" label="CNPJ" size="20" />
<s:textfield name="rcbp.telefoneCentral" value="%{rcbp.telefoneCentral}" label="Telefone Central" size="25" />
<s:textfield name="rcbp.faxCentral" value="%{rcbp.faxCentral}" label="FAX Central" size="25" />
<s:textfield name="rcbp.emailRCBP" value="%{rcbp.emailRCBP}" label="Email RCBP" size="30" />
<s:textfield name="rcbp.telefoneRCBP" value="%{rcbp.telefoneRCBP}" label="Telefone RCBP" size="25" />
<s:textfield name="rcbp.faxRCBP" value="%{rcbp.faxRCBP}" label="FAX RCBP" size="25" />
<s:textfield name="rcbp.enderecoWWW" value="%{rcbp.enderecoWWW}" label="Endereço Site" size="30" />
<s:textfield name="rcbp.logradouroRCBP" value="%{rcbp.logradouroRCBP}" label="Logradouro" size="50" />
<s:textfield name="rcbp.complementoRCBP" value="%{rcbp.complementoRCBP}" label="Complemento" size="10" />
<s:textfield name="rcbp.bairro" value="%{rcbp.bairro}" label="Bairro" size="20" />
<s:select label="Estado" name="rcbp.uf.idUF" list="ufs" listKey="idUF" listValue="nomeUF" headerKey="-1" headerValue="--Selecione um estado--" />
<s:select label="Municipio" name="rcbp.municipio.idMunicipio" list="municipios" listKey="idMunicipio" listValue="nomeMunicipio" headerKey="-1" headerValue="--Selecione um municipio--" />
<s:hidden name="rcbp.idInstituicao" value="%{rcbp.idInstituicao}" />
<s:submit value="salvar" /><s:submit value="excluir" name="redirect-action:excluirRCBP" preInvokeJS="confirm('Confirma a exclusão do RCBP?');" />
</s:form>
</fieldset>
</body>
</html>