Hi all, I'm try to customize the "sent" view menu bar in Inotes 9, I try to add submenus to "more" item, but, while in inbox folder all works fine using this code in custom_JS_Lite:
...
var bLeftItems = true;
var aAdd2 = [
{ find_id: "more", id: "more", update: true,
submenus: [
{title:"abc", action:"LoadCompact{}"},
{title:"def", action:"ReportSpam{}"},
{is_divider:true},
...and so on
]}
];
addActionsLite( s_MenuID, bLeftItems, aAdd2 );
the same code does not work in "sent" view and nothing happen...
where am I wrong?
Thank In advance for any help.
Regards