Hi All,
I have added a field to ‘Project Definition’ window which can be used to navigate connected Customer Orders.
I am using Details property to navigate relevant page like below.
@Override
group ProjectDetailHeaderGroup for Project {
@DynamicComponentDependency ORDER
static CsCustomerOrder {
searchable = true;
details = "page/CustomerOrder/Form?$filter=startswith(OrderNo,$rCsCustomerOrder])";
}
}
for CsCustomerOrder I’m using custom logic to select relevant Order Nos and passing values like this ‘C1203;C1204;C1205’
Now client is like below (yellow highlighted field)
but when I click on the navigate field it will navigate to the Customer Order window, but I have to hit ‘Search’ button to see the data.
I would like to know is there are any way/possibility to see the filtered data when navigating without clicking ‘Search’ button?
Note: this worked for one value in the filtered parameter list, but for more values it’s not working.
Thanks,
Asanka.