Hi
Im trying to create a custom property with the field-selector component. I can see there is a bool property called grouping. And for the data I have groupName set, but when I set grouping to true the only groupname that shows up in the component is the name “Fields”.
<field-selector #control
[manualFetch]="true"
[value]="items"
[sortable]="false"
[grouping]="true"
[fields]="fields$ | async"
[idSelector]="idSelector"
[stateSelector]="stateSelector"
(valueChange)="onFieldSelect($event)"
></field-selector>
Items data:
[{“title”:“Raven-46”,“fieldId”:"Field1,“groupName”:“WE_STOFF”},{“title”:“Shadow-45”,“fieldId”:“Field2”,“groupName”:“WE_STOFF”},{“title”:“Navy-61”,“fieldId”:“Field3”,“groupName”:“WE_BEN”}]
Is it possible to enable grouping for the items?
Litium version: 8.4.1