Opa 
Tenho um modal Panel e dentro dele tem uma dataTable que tem um botão de ação no managedBean.
Alguém sabe pq ele não funciona? Quando eu clico, ele somente fecha o modalPanel
<rich:modalPanel id="panel" width="800" height="450">
<f:facet name="header">
<h:panelGroup>
<h:outputText value="Pacientes Agendados"></h:outputText>
</h:panelGroup>
</f:facet>
<f:facet name="controls">
<h:panelGroup>
<h:graphicImage value="/imagens/icones/close.png" style="cursor:pointer" id="hidelink"/>
<rich:componentControl for="panel" attachTo="hidelink" operation="hide" event="onclick"/>
</h:panelGroup>
</f:facet>
<rich:dataTable align="left" value="#{agendamento.agendamentosModel}"
var="agendamentos" rows="20" id="tabelaAgendamentosSala"
binding="#{agendamento.tabelaAgendamentosSala}"
onRowMouseOver="this.style.backgroundColor='#F1F1F1'"
onRowMouseOut="this.style.backgroundColor='#{a4jSkin.tableBackgroundColor}'" width="800px">
<rich:column sortBy="#{agendamentos.horario}">
<f:facet name="header">
<h:outputText value="Horário" />
</f:facet>
<h:outputText value="#{agendamentos.horario}" />
</rich:column>
<rich:column width="60%" sortBy="#{agendamentos.paciente.nome}">
<f:facet name="header">
<h:outputText value="Nome" />
</f:facet>
<h:outputText value="#{agendamentos.paciente.nome}" />
</rich:column>
<rich:column width="10%">
<f:facet name="header">
<h:outputText value="Sexo" />
</f:facet>
<h:outputText value="#{agendamentos.paciente.sexo}" />
</rich:column>
<rich:column>
<f:facet name="header">
<h:outputText value="Desmarcar" />
</f:facet>
<h:commandLink action="#{agendamento.deleteAgendamento}"
id="deleteAgendamento">
<a4j:support event="onclick" action="#{agendamento.porra}" reRender="tabelaAgendamentos"></a4j:support>
<f:setPropertyActionListener target="#{agendamento.idAgendamento}"
value="#{agendamentos.id}" /><h:graphicImage url="/imagens/icones/remover.gif" style="text-decoration: none; border-width: 0px; text-decoration: none" /></h:commandLink>
</rich:column>
<f:facet name="footer">
<rich:datascroller align="center" for="tabelaAgendamentosSala" maxPages="20"></rich:datascroller>
</f:facet>
</rich:dataTable>
</rich:modalPanel>
[]'s