Skip to content

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 at the icon location

OML

 {"default:MenuMore":{
     "list" : [ ... ]
 }}

Config Default

 {
      display: {
           html: '{{$label}}'
      },
      callbacks: {
           select: () => {},
      },
      list: [],
 }

Events

 OGX.MenuMore.SELECT

Example

 {"default:MenuMore":{
     "callbacks" : {
          "select" : (__item) => {
                console.log(__item.label, 'SELECTED');
           }
     }
     "list" : [
        {"label" : "Follow User"},
        {"label" : "Block User"},
        {"label" : "Report User"}
     ]
 }}

Clone this wiki locally