Filter after selecting lookup field

Hi all!

We have an application and we would like to use the filter option after selecting one element from a lookup field. So we have set editable to true on each column and, each of them takes us to another table from which the options can be chosen from. The first is the project and we would like to use this attribute to filter the tables on each pages where other values can be chosen from. In the xml we have put:

screen3

So from this screen:
screen2
When we click on the … button we are navigated to this screen:
screen1
Here we have the same Project column as on the first screen, but we only would like to see those rows, where the project is the same as where we came from.

I tried to get the PickerField of the table, and add to the lookupscreen the project param, but did not have any success.

@Named("risks")
private PickerField projectsCreate;
 
@Override
public void init(Map<String,Object> params){
    //
    projectsCreate.getLookupAction().setLookupScreenParams(ParamsMap.of("project", "")); }

Do you have any advice on this?

Thanks,
Attila

Hi Attila,

You cannot get access to the components created automatically when you switch the table to editable mode. If you need to configure such editing component, create a generated column using the generator XML attribute or addGeneratedColumn() API method.