i create a Master Detail Block, but if i register my DetailPage with the Interface as key it doesn't work. Do i have to register the detail pages always with the impl as key? Or is there a possibilty to work with interfaces?
protected void registerPages(DetailsPart detailsPart) {
//work
detailsPart.registerPage(MyItemImpl.class, new FahrtDetailPage());
//doesn't work
detailsPart.registerPage(MyItem.class, new FahrtDetailPage());
}