Messages posted by cristiansaavedra
[Logo]
ICEsoft.org Forums: ICEfaces, ICEmobile, ICEpdf
[Search] Search   [Recent Topics] Recent Topics   [Groups] Home Page | www.icesoft.org  [Login] Login 
Messages posted by: cristiansaavedra  XML
Profile for cristiansaavedra -> Messages posted by cristiansaavedra [2]
Author Message
Thank for your answer, but the problem is that i need to post to an external url, so i need to specdify the action in a regular form, extracting data from my beans.

Using #{Bean.property} doesn't work either because i'm not using an <ice:form/> tag
Hello

I'm migrating my application from woodstock to icefaces and i got stuck on the next issue:

At the end of the process, my application has to post to an external (totally out of my server) url, this url can change and could be https or http. So, in my woodstock application i got something like this.

Code:
 <form action="${Transaccion.idFactura}" id="datosEnvio" method="POST" name="datosEnvio">
                             <input name="codigoFactura" type="hidden" value="${Transaccion.idFactura}"/>
                                 <input name="valorFactura" type="hidden" value="${Transaccion.valor}"/>
                                 <input name="codigoAutorizacion" type="hidden" value="${Transaccion.codigoAutorizacion}"/>
                                 <input name="firmaTuCompra" type="hidden" value="${Transaccion.encodedAnswer}"/>
                             </form>
 


As you can see, i got the parameters from my bean, named Transaccion using the jstl access bean ${}.

But now, when i try to do the same using icefaces, the ${Transaccion.property} is not parsed. How can i solve this?

Thans a lot.
 
Profile for cristiansaavedra -> Messages posted by cristiansaavedra [2]
Go to:   
Powered by JForum 2.1.7ice © JForum Team