I have created a new subform in the Forms85 database which is used to remove notes of a particular type within the mail view. However, in order to see the item disappear a manual refresh is required. In previous versions (8 and 7) I was able to achieve this by calling window.parent.BFn, but this does not seem to be available in iNotes85. Is there a form/subform that needs to be included to use this functionality, or should an alternative approach be used. Thanks.
Subject: Something to try
Hi Marc,
You might want to try the following code:
var oWidget = AAA.DSq.EKc.prototype.EYl[‘e-listview-container-mail:FkQ’];
if (oWidget) oWidget.load();
(Please note that this is subject to change as new release comes)
To make customization to iNotes 8.5 in general, the following would be good references:
http://www-10.lotus.com/ldd/dominowiki.nsf/dx/inotes-lite-framework
http://www-10.lotus.com/ldd/dominowiki.nsf/dx/manipulating-data-in-inotes-lite-forms
There some other good references in “Lotus iNotes customization” category in the site.
Best regards,
- Akira
Subject: Re:Something to try
Thanks! That worked perfectly