Hi, How can I have a Task link to a User input Task in the editable g

Hi,

How can I have a Task link to a User input Task in the editable grid?

Thanks in advance,
Nimisha.

OriginalPostID-218009

OriginalPostID-218009

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer
    gridLinkColumn was deprecated a few versions ago, what version are you on? You should be using the links attribute of gridTextColumn:
    a!gridTextColumn(
    label: "Claim",
    data: index(
    local!data.data,
    "abc",
    {}
    ),
    links: if(
    local!data.totalCount = 0,
    {},
    apply(
    a!submitLink(
    value: _,
    saveInto: local!testBool
    ),
    index(
    local!data.data,
    "abc",
    {}
    )
    )
    )
    )
Reply
  • 0
    Certified Lead Developer
    gridLinkColumn was deprecated a few versions ago, what version are you on? You should be using the links attribute of gridTextColumn:
    a!gridTextColumn(
    label: "Claim",
    data: index(
    local!data.data,
    "abc",
    {}
    ),
    links: if(
    local!data.totalCount = 0,
    {},
    apply(
    a!submitLink(
    value: _,
    saveInto: local!testBool
    ),
    index(
    local!data.data,
    "abc",
    {}
    )
    )
    )
    )
Children
No Data