Hi
I have problem with access to data in loginWindow controller.
I created custom loginWindow and now I try get data in init method,
code below
@Inject
private DataManager dataManager;
@Override
public void init(Map<String, Object> params) {
super.init(params);
List<Group> brunchList = dataManager.loadValue("select e from sec$Group e", Group.class).list();
}
I have problem because method dataManager.loadValue
returns empty list. I use this same code in other edit window controller and in this case this method returns any values. Any suggestions ?