-
Notifications
You must be signed in to change notification settings - Fork 0
MenuMore
Eric edited this page May 31, 2026
·
5 revisions
MenuMore is a component to display a 3 dots icon that opens a DynamicList submenu when touched/clicked
{"default:MenuMore":{
"list" : [ ... ]
}}
{
display: {
html: '{{$label}}'
},
callbacks: {
select: () => {},
},
list: [],
}
OGX.MenuMore.SELECT
{"default:MenuMore":{
"callbacks" : {
"select" : (__item) => {
console.log(__item.label, 'SELECTED');
}
}
"list" : [
{"label" : "Follow User"},
{"label" : "Block User"},
{"label" : "Report User"}
]
}}