Modify values in a table filled with logic iterate in struts1

115 views Asked by At

I've created a table with logic iterate in my jsp. Now I want that on the click on a button (edit), a column of this table become editable.

    <logic:iterate id="result" name="result">
                <tr>
                    <td style="border:1px solid black; border-collapse:collapse;"><bean:write name="result" property="key"/></td>                   
                    <td style="border:1px solid black; border-collapse:collapse;"><input type="text" value="<bean:write name="result" property="value"/>" style="border:none" readonly>
                    </td>                                       

                </tr>
</logic:iterate>

Who can help me?

0

There are 0 answers