Take an input value from a table and pass with parameter in a link

Asked

Viewed 35 times

0

Good afternoon I need to take the value typed in an input inside a table that was fed with a List, and pass this value as parameter in a link, along with other parameters that these already got, due to already being inside the c:out tag. Below a screen print to better understand and part of the font:

inserir a descrição da imagem aqui

    <c:forEach items="${lista}" var="xxx">
               
                <tr> 
                    <td align="center"><c:out value="${xxx.origem}"/></td>
                    <td align="center"><c:out value="${xxx.filial}"/></td>
                    <td align="center"><c:out value="${xxx.doc}"/></td> 
                    <td align="center"><c:out value="${xxx.item}"/></td>                                               
                    <td align="center"><c:out value="${xxx.cod}"/></td>
                    <td align="center"><c:out value="${xxx.quant}"/></td>                        
                    <td align="center"><c:out value="${xxx.total}"/></td>
                    <td align="center"><c:out value="${xxx.tes}"/></td>
                    <td align="center"><c:out value="${xxx.cf}"/></td> 
                    <td align="center"><c:out value="${xxx.pedido}"/></td>                        
                    <td align="center"><c:out value="${xxx.recno}"/></td>
                    <td align="center"><input type="text" name="ccNovo"/></td>
                    <td align="center">
                        <a href="CustoCcDoacaoBonifServlet?id=2&recno**origem**ccusto=${xxx.recno};;${xxx.origem};;PASSAR AQUI O VALOR"><img src="imagens/edit.png" title="Alterar CC"/></a> 
                        <br/>                       
                    </td>
                 
                </tr>  
            </c:forEach> 
No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.