I have a datatable with multiple rows, I want to put one link to redirect the values to one Servlet. The old call that I use is similar like this :
a onclick=openWindow('./Servlet?param1=xx¶m2=xxx')
I'm newbie in ICEfaces... I need your help because I don't know how can I put one parameter only like this :
ice:outputLinktarget="mainFrame" value="./Servlet?param1=#{item.id}
but when I put two parameters, I got an errors in the code.
ice:outputLinktarget="mainFrame" value="./Servlet?param1=#{item.id}¶m2=#{item.id}
Somebody knows how to do it?