Error using column browser component in user form

A Score Level 2
Hi, I am facing an issue while using column browser in one of my user forms. The user interface is working absolutely fine but when i try to map the interface in form, it gives me an error stating- "Variable(s) not found: fv!nodeValue.
I understand that its an internal variable to the component and I have only used it internally.
Please see code below:
a!hierarchyBrowserFieldColumns(
label:"Label",
firstColumnValues:local!category,
nodeConfigs:{ a!hierarchyBrowserFieldColumnsNode(
id: fv!nodeValue,
label: fv!nodeValue,
image: a!documentImage(
document: a!iconIndicator(
icon: if(
contains(local!firstNode, fv!nodeValue),
"PREVIEW",
"DOC_GENERIC"
)
)
),
isSelectable: true()
)},
nextColum...

OriginalPostID-231491



  Discussion posts and replies are publicly visible

Parents
  • ...nValues:
    /*For First Subcategory*/
    if(fn!count(local!firstNode)=1,
    fn!index(local!rfcData.subCat,fn!intersection(fn!wherecontains(ri!selection,local!rfcData.category),
    local!reqdLevel),{}),
    null
    ),
    pathValue:local!firstNode,
    pathSaveInto:{
    local!firstNode,
    a!save(ri!selection,null),

    },
    selectionValue: ri!selection,
    selectionSaveInto: {ri!selection,
    a!save(ri!isSelected,fn!count(local!firstNode)=2)
    }

    )
Reply
  • ...nValues:
    /*For First Subcategory*/
    if(fn!count(local!firstNode)=1,
    fn!index(local!rfcData.subCat,fn!intersection(fn!wherecontains(ri!selection,local!rfcData.category),
    local!reqdLevel),{}),
    null
    ),
    pathValue:local!firstNode,
    pathSaveInto:{
    local!firstNode,
    a!save(ri!selection,null),

    },
    selectionValue: ri!selection,
    selectionSaveInto: {ri!selection,
    a!save(ri!isSelected,fn!count(local!firstNode)=2)
    }

    )
Children
No Data