I've got an iframe on the contact entity that shows a view with activities for a contact. This worked fine in the classic UI, but not in UCI.
var url = Xrm.Page.context.getClientUrl() + '/userdefined/areas.aspx?formid=' + formId + '&inlineEdit=1&navItemName=Activities&oId=' + encodeURIComponent(oId) + '&oType=' + oType + '&pagemode=iframe&rof=true&security=852023&tabSet=areaActivities&theme=Outlook15White';
if (frame != null) {
frame.setSrc(url);
Is there a different command to set the view to editable?
Thanks