I am implementing a DataView using an HTML Table and I need to allow the user to select a row in the table to tell the Server Side which row they selected. I could implement this by using AjaxFallbackLink, but this would only link the text in the row, the user needs to be able to click anywhere in the row, so I need the ability to detect when the user clicks anywhere in the row, like an onclick event on the <TR> element (or the <TD> elements). Is there a way to tell the server side when this happens? Here is my markup and I'm implementing DataView:
<div wicket:id="projectListDataViewContainer"> <table> <tr wicket:id="siteProjectList"> <td> </td> <td class="projectDesc"></td> </tr> </table> </div> Thank you duncan787 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/How-to-trigger-server-side-method-when-user-clicks-on-a-Table-Row-tp2991576p2991576.html Sent from the Users forum mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org