Dojo struts 2 submit

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%@ taglib prefix="s" uri="/struts-tags" %>
<%@ taglib prefix="sx" uri="/struts-dojo-tags" %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<sx:head />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title> Detalhe </title>
<link href="css/scp.css" rel="stylesheet" type="text/css" />

<script language="JavaScript" type="text/javascript">
    dojo.event.topic.subscribe("selecionado", function treeNodeSelected(node) {
        dojo.io.bind({
            url: "<s:url value='/SCPWEB/Consultar_Processo.action?numProcesso=6330'/>",
            load: function(type, data, evt) {
                var divDisplay = dojo.byId("displayId");
                divDisplay.innerHTML=data;
            },
            mimeType: "text/html"
        });
    });
</script>
</head>
<body>

<form name="form">

<table width="792" height="371" class="center" id="scp">

  <tr bgcolor="#E6EDF5">

    <td height="30" class="label">Apenso : </td>

    <td>   
          <sx:tree rootNode="noPai" 
          		   nodeTitleProperty="titulo" 
           		   nodeIdProperty="numPai" 
            	   childCollectionProperty="listaNo" 
           		   treeSelectedTopic="selecionado"
           		   >
  		  </sx:tree>
 </td>

</table>

</form>

</body>

</html>

Depois que eu clico em algum no da arvore a função via dojo chama corretamente a action que recebe os parametros corretamento só que na ora que é pra chamar a outra pagina para exibir as informações…nao acontece nada pois fica na mesma pagina… :frowning:

É como nao conseguice fazero o post…alguem sabe como executar submit pelo Dojo dessa forma !?