Galera,
estou com este form em struts 2, entretanto no momento que dá um submit é cobrada uma biblioteca dojo. Alguem sabe como resolve-lo?
<%@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 Categoria</title>
<s:head theme="ajax" />
</head>
<body>
<fieldset>
<legend>Cadastro de Categoria</legend>
<s:if test="hasErrors()">
<b>Erros:</b>
<s:fielderror />
</s:if>
<s:form action="salvarCategoria!salvar" method="post" id="formCategoria" validate="true" theme="ajax">
<s:textfield name="categoria.identificadorCategoria" value="%{categoria.identificadorCategoria}" label="Identificador" size="40" />
<s:textarea name="categoria.descricaoCategoria" value="%{categoria.descricaoCategoria}" label="Descricao" cols="30" rows="25" />
<s:hidden name="categoria.idCategoria" value="%{categoria.idCategoria}" />
<s:submit value="salvar" /><s:submit value="excluir" />
</s:form>
</fieldset>
</body>
</html>