Pushpendra Singh wrote: > > Hi, > > I have to make editable rows in the display tag. > > Can any one help me? > > As I told someone else yesterday DisplayTag is good at displaying your data but it does not have built in the ability to edit that data. That part is up to you to code.
You can make DisplayTag display form <input> tag in its cells: <display:column title="name"> <input type="text" size="40" value="${row.name}"/> </display:column> or provide a link to an editing page: <display:column title="edit"> <a href="edit.jsp?rowid=${row.id}"/> </display:column> but it is your responsibility for processing and persisting the user's editing requests. Ed! ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ displaytag-user mailing list displaytag-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/displaytag-user