This forum is closed to new posts and responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:

HCL Software Customer Support Portal for U.S. Federal Government clients
HCL Software Customer Support Portal


Apr 4, 2016, 10:41 AM
10 Posts

iNotes Mail-Inbox View Right Click customisation

  • Category: iNotes
  • Platform: All Platforms
  • Release: 9.0.1
  • Role: Developer
  • Tags:
  • Replies: 2

 I can't find a way to modify the iNotes "right click" menu when you are in the Mail-Inbox view and have a document selected.  I thought it would be in AddActionsLite, but couldn't find anything there.  Is there another function call I'm missing, or any other ideas on how to do this?

I reviewed the page: https://www-10.lotus.com/ldd/dominowiki.nsf/dx/The_basics_of_iNotes_customization and Eric Spencer's presentation, but unless I missed something I didn't find anything.  Thanks in advance.

Apr 4, 2016, 10:17 PM
8 Posts
AddActionsLite, removeActionsLite, etc
If you use AddActionsLite, removeActionsLite, and repositionActionsLite to modify items on the main menu bar, the corresponding items on the right mouse menu will also be updated.
Apr 7, 2016, 8:12 AM
10 Posts
I can add Action Bar items, but they aren't being added to right click

As a test, I added the following action to the action bar, but it didn't show up in the right click items.  What am I missing to add it as a right click option?


function do_this(sId){
    var selected_docs = API_GetSelectedDocs_Lite();
    alert("UNIDs of selected docs: " + selected_docs);
}

function Custom_Scene_Actions_Lite(s_MenuID)
{

 

{title:"Action1", find_id: "new", id: "Act1", before: true,
         action:"do_this{ }", help_text: "Running Action One" }
    ];
    addActionsLite( s_MenuID, bLeftItems, aAdd1 );

  }

Additionally, addActionsLite() is giving the action bar menu ID's using hover, but I can't get the menu ID's for the right click menus.  

From the information on checkActionIDs helper function, 
//.....A new item will also be added to the top of all dropdown menus
// which has the dropdown ID as the text.

I'm not getting the menu ID at the top of the dropdown.  But hover is working on the action bar.

My main objective is to add an action to the Action Bar, as well as an action to the right click dropdown menu of the mainview documents.

 


This forum is closed to new posts and responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:

HCL Software Customer Support Portal for U.S. Federal Government clients
HCL Software Customer Support Portal