hi, i had almost the same error. when i clicked in my table on a sortable column then i received the same error, because the object was not found.
the line return new ModifyMessageRow(); //Handle data item not found was the cause in my case, because the class (in your case ModifyMessageRow) had some getters and setters which contained other objects (e.g. public Article getArticle()). so i created an empty object of Article and put it to the class (here ModifyMessageRow). Article article = new Article(.....); ModifyMessageRow row = new ModifyMessageRow(); row.setArticle(article); return row; i hope this will help you. regards sebastian --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
