I have a user field and want to show users of the specific team by default.
client\custom\src\views\entity-a\fields\user-field.js
getSelectFilters: function () {
return {
'teams': {
type: 'linkedWith',
value: ['5afb9539793785674'],
}
};
}
In the web page, only id '5afb9539793785674' is shown in the filter. How can the team name be shown in the filter? thanks.
client\custom\src\views\entity-a\fields\user-field.js
getSelectFilters: function () {
return {
'teams': {
type: 'linkedWith',
value: ['5afb9539793785674'],
}
};
}
In the web page, only id '5afb9539793785674' is shown in the filter. How can the team name be shown in the filter? thanks.
Comment