Hi edu,
that helper is mainly for avoiding browser accelerators from pre-fetching delete links on your apps. See this and this.
You might want to create a helper that generates something like this...
<a href="/sise/valoracion_acts/add/" onclick="var f = document.createElement('form'); document.body.appendChild(f); f.method = 'POST'; f.action = this.href; var i = document.createElement("input"); i.setAttribute("name", 'demanda_acts_id'); i.setAttribute("value", 41); f.appendChild(f); f.submit();return false;">Valoración Salida</a><br/>
or use a simple form and button/image instead of a link.
1 to 3 of 3