How to populate read only grid from list (Text) in constant file

Hi,

I have a constant file (image below) with Text type and Array values, I am trying to populate readonly grid with this list and a checkbox next to each value. Please suggest how can we achieve this?

  Discussion posts and replies are publicly visible

Parents Reply
  • I have started getting this error (below)

    Could not display interface. Please check definition and inputs. Interface Definition: Expression evaluation error at function a!gridField [line 21]: Could not cast from Text to Map. Details: CastInvalidCould not cast from Text to Map. Details: CastInvalid

    a!gridField(
                    label: "Employee Directory",
                    data: todatasubset(
                      cons!ABC_List,
                      fv!pagingInfo
                    ),
                    columns: {
                      a!gridColumn(
                        label: "Name",
                        sortField: "name",
                        value: fv!row.name
                      )
                    }

Children