There currently seems to be an issue in Dynamics 365 Online, where you can see notes in area in the custom entity, but cannot create new notes. I could reproduce this issue in this version -> Version 1612 (8.2.0.773) (DB 8.2.0.764)
This is how the notes area looks in a custom entity. There is no header area to create new notes.
Image may be NSFW.
Clik here to view.
Compare this with the contact entity.
Image may be NSFW.
Clik here to view.
As you can see, there is a textarea to create new notes, which seems to be missing in the custom entity. I looked into this using DevTools, and it appears to be display issue, as the DOM elements for creating the notes are still there. I quickly wrote this bookmarklet to temporarily show the create new notes text area in the form.
Sourcecode
(function () { let contentPanels = Array.from(document.querySelectorAll('iframe')).filter(function (d) { return d.style.visibility !== 'hidden' }); if (contentPanels && contentPanels.length > 0) { let activityWall = contentPanels[0].contentDocument.querySelector('#notesWall div.header'); if(activityWall && activityWall.style.display === 'none'){ activityWall.style.display = '' } } else { alert('Entity form not detected'); } })();
Bookmarklet
javascript:(function(){let contentPanels=Array.from(document.querySelectorAll('iframe')).filter(function(d){return d.style.visibility!=='hidden'});if(contentPanels&&contentPanels.length>0){let activityWall=contentPanels[0].contentDocument.querySelector('#notesWall div.header');if(activityWall&&activityWall.style.display==='none'){activityWall.style.display=''}}else{alert('Entity form not detected');}})();void 0;
This is how the custom form will look, after you run the bookmarklet.
Image may be NSFW.
Clik here to view.
I am not sure what sets the “display” property to none. When the DOM element is initially created, it is created without the “display” property set and then some event handler appears to be modifying this. I set a DOM breakpoint on “Attributes modifications”, but the breakpoint is not retained when I refresh the page, and hence I am unable to catch the “display: none” being set on “#notesWall div.header”. I spent some time to investigate this from the pretty-printed source, but could not figure it out.
Image may be NSFW.
Clik here to view.

Clik here to view.
