Hi,

I had a listener method like that:
public String onOk() {
  getPersistenceService().saveItem(item);
  ...;
  return "ItemList";
}

everything worked fine until i changed it to:

public ILink onOk() {
  getPersistenceService().saveItem(item);
  ...;
  return getPageService().getLink(false, "ItemList");
}

now item is not saved and does not appear in the database..
What can be the problem?

thanks,
Valdemaras Repšys

Reply via email to