Hi there, Just to clear this problem up, it was the server side code causing the problem, one line in particular:
Long id = new Long(selection); Which was intended to create a Long from a String, the Long value would then be used for the database query. I changed it to Long id = Long.valueOf(selection) and everything worked ok. Strange huh? However... I found that the Table component and XTile didn't seem to work to well together, so I decided to go down the route of implementing a custom ServiceLink, which seems to be working ok. Thanks for your help. -------------------- m2f -------------------- Sent from www.TapestryForums.com Read this topic online here: <<topic_link>> http://www.tapestryforums.com/viewtopic.php?p=11934#11934 -------------------- m2f --------------------
