jQuery - Grid

Estou tentando colocar um grid, até funciona mostra dos dados e tudo. Entretanto não consigo enviar um parâmetro para a action antes de fazer o processamento.

tipo:

<s:form id="idmeuform" action="consulta" method="post"  >
    <s:textfield name="nome" ></s:textfield>
</s:form>

<sj:grid id="gridtable" caption="Lista" dataType="json" href="%{remoteurl}" gridModel="gridModel" formIds="idmeuform"
		    	rowNum="99" rownumbers="true" pager="true"  >
		    	<sj:gridColumn name="id" index="id" title="ID" formatter="integer" sortable="true" formIds="idformconsulta"/>
		    	<sj:gridColumn name="name" index="name" title="Name" sortable="true" formIds="idformconsulta"/>
		    	<sj:gridColumn name="country" index="country" title="Country" sortable="true" formIds="idformconsulta"/>
		    	<sj:gridColumn name="city" index="city" title="City" sortable="true" formIds="idformconsulta"/>
		    	<sj:gridColumn name="creditLimit" index="creditLimit" title="Credit Limit" sortable="false" formIds="idformconsulta"/>
		    </sj:grid>

Normalmente a tag formIds é feita para pegar os valores dos input e passar para a action, entretanto isso não esta ocorrendo!
alguem tem alguma idéia ?