68879 - no subject - Hi,\nI have a multiple CDT with four fie

Hi,
I have a multiple CDT with four fields. I would like to show, in a new Tempo record, a grid with four columns (one for each field) - like the function "ncolumntable" in dashboards.
I tried to put each CDT field (ex. rf!Employees.name) into a "data" field in the Grid Component but it doesn't work.
Thanks!...

OriginalPostID-68879

  Discussion posts and replies are publicly visible

Parents
  • Sara - if you are looking to build a simple grid and don't care about sorting/paging then the tutorial example will work for you. I believe your problem is that you are using values from a multiple CDT directly, which doesn't work in SAIL UI components. Try saving your CDT locally and referencing the fields from there:

    with(
    employeeData=rf!employees,
    type!Grid(
    [Your grid code, referencing employeeData.names, employeeData.xxx]
    )
    )
Reply
  • Sara - if you are looking to build a simple grid and don't care about sorting/paging then the tutorial example will work for you. I believe your problem is that you are using values from a multiple CDT directly, which doesn't work in SAIL UI components. Try saving your CDT locally and referencing the fields from there:

    with(
    employeeData=rf!employees,
    type!Grid(
    [Your grid code, referencing employeeData.names, employeeData.xxx]
    )
    )
Children
No Data