Re: Struts2 DWR parameter issue

2007-05-22 Thread newtostruts struts
Thanks Lance, I don't know what I was doing wrong with my old method, but it is working fine now. Lance <[EMAIL PROTECTED]> wrote: You could use jsp tags to create a hidden template row. Client side you can clone the template row using dwr.util.cloneNode() then tweak the appropriate

Re: Struts2 DWR parameter issue

2007-05-22 Thread Lance
You could use jsp tags to create a hidden template row. Client side you can clone the template row using dwr.util.cloneNode() then tweak the appropriate bits. newtostruts struts wrote: I'm trying to use DWR with Struts2. The problem is when I'm trying to build the row of a table with a link

Struts2 DWR parameter issue

2007-05-22 Thread newtostruts struts
I'm trying to use DWR with Struts2. The problem is when I'm trying to build the row of a table with a link to an action class, I'm not able to send any params in that link. eg: var getUname = function( user ) { return '' + user.uname + '' }; This is what I'm trying to do but gett