In a particular scenario im populating my form using logic:iterate with data fetched based on a query the user may edit or view the same(for each row)
lets say im populating my order form with line item enrty and the user wants to edit or view each line item Now how can one generate and track the row ids...do we have any tags or attribues for any tag to do the same. If a tag attribute is doing the same then how can one get the index value generated. I have tried using <html:link page="/editdetails.do?action=Edit" paramId = "<% = index1 %>"> <bean:message key="edit.lineitems"/> </html:link> inside the logic:iterate tag is paramId generating an index value if so how do i track/fetch it and at the same time if we use indexed then what should be the value of indexed attribute do we have a clear cut solution for this scenarion
