Is it possible to include external web application on Account page and how? I would like to include it with php include or iframe passing param from espo crm (account id).
Regards, Egi
Regards, Egi
return Dep.extend({ ...... afterRender: function () { if (this.getAcl().checkModel(this.model, 'edit')) { $('<div id="myDiv" class="panel panel-default"><div class="panel-heading"><h4 class="panel-title">My Iframe</h4></div>' + '<iframe width="100%" height="350" frameborder="0" scrolling="yes" marginheight="0" marginwidth="0" src="/test.php?id='+this.model.id+'" allowfullscreen></iframe></div>').appendTo('.record'); } }, .....
Comment