I have a browse screen and it list all data when opened
If a specific id is not there in sessionDataProvider like
Integer id= (Integer) sessionDataProvider.getObject().getAttribute(“id”);
if(id== null) {
screens.create(chooseEntity.class).show();
}
This open a popup with a dropdown to chose entity. When an entity is selected and the popup is closed i need to filter the browse screen according to the selcted entity
In short how can i get the selected value in popup in the screen from which i opened the popup