How to change colour of Grid Layout Label to match with the UI Header Button Layout colour?

How to change colour of Grid Layout Label to match with the UI Header Button Layout colour?

  Discussion posts and replies are publicly visible

Parents
  • Hi Anusha,

    I agree with vimal kumar, might be below code will help for you.

    {
    a!richTextDisplayField(
    label: "",
    value: a!richTextItem(
    text: "Grid Label",
    style: "POSITIVE"
    )

    ),
    a!gridLayout(
    label: "",
    labelPosition: "ABOVE",
    headerCells: {
    a!gridLayoutHeaderCell(label: "Header Cell")
    },
    columnConfigs: {},
    rows: {},
    selectionSaveInto: {},
    validations: {},
    shadeAlternateRows: true
    )
    }

    Thanks
    Devi
Reply
  • Hi Anusha,

    I agree with vimal kumar, might be below code will help for you.

    {
    a!richTextDisplayField(
    label: "",
    value: a!richTextItem(
    text: "Grid Label",
    style: "POSITIVE"
    )

    ),
    a!gridLayout(
    label: "",
    labelPosition: "ABOVE",
    headerCells: {
    a!gridLayoutHeaderCell(label: "Header Cell")
    },
    columnConfigs: {},
    rows: {},
    selectionSaveInto: {},
    validations: {},
    shadeAlternateRows: true
    )
    }

    Thanks
    Devi
Children
No Data