Skip to main content

Some List pages in IFS Cloud offer an expandable view of sub data when selecting a chevron/caret arrow at the far left of a list.

I would like to know if it’s possible to add this function to other List pages through the page designer. I have tried adding a few different things to test but am not having any luck.

 

 No, it is not possible to add this feature through page designer. It has to be declared as a nested list in the code. Please refer the nested list examples in IFS technical documentation.

Example 2 - Nested Lists
An example of nesting lists inside a tab control:

tabs {
    tab {
        label = "Disposition Lines";

    list DispositionLinesList(ShopOrdDispoLineArray) {
        ...
    }  
    list LotBatchSerialRecordList(DispoLineSerialArray) bind DispositionLinesList {

        label = "Serial Details";

        display = Nested;
        ...
    }
    ...
 

 


Thank you for the response. Could you provide the link to the specific nested documentation and specify where the coding is to be entered to create nested lists in IFS?

Thank you.


Hi @mkozlowski  - If you happen to have the access to IFS Technical Documentation. this is where you should look for.

 

https://docs.ifs.com/techdocs/24r1/060_development/022_user_interface/030_aurena_dev/130_aurena_component_reference/120_client_controls/list/


Reply