Skip to main content
Question

IFS Cloud Page Designer - sub data when selecting from a list

  • June 7, 2024
  • 3 replies
  • 125 views

mkozlowski
Do Gooder (Customer)
Forum|alt.badge.img+3

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.

 

3 replies

Mayura Wasantha
Superhero (Employee)
Forum|alt.badge.img+19
  • Superhero (Employee)
  • 504 replies
  • June 10, 2024

 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;
        ...
    }
    ...
 

 


mkozlowski
Do Gooder (Customer)
Forum|alt.badge.img+3
  • Author
  • Do Gooder (Customer)
  • 7 replies
  • June 12, 2024

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.


Mayura Wasantha
Superhero (Employee)
Forum|alt.badge.img+19
  • Superhero (Employee)
  • 504 replies
  • June 13, 2024

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/