Question

Editable list

Hi, I create editable detail.

It contain two drop down list one depends on other.

is it posible to filter one based on other value?

 

Regards

Tomek

Like 0

Like

1 comments

Hello tomasz,



It can be achieved via triggering some method for filtering when the field is changing. You will need to create new attribute with dependencies properties where column and method should be specified. For example:

 

"OnColumnNameChange":{
    "dependencies":[
        {
         "columns":["columnName"],
         "methodName":"methodThatTriggersWhenColumnNameChanges"
         }]
}

Also please note on these articles: 

https://community.bpmonline.com/questions/filter-detail

https://community.bpmonline.com/articles/filtering-details-several-fiel…

Show all comments