BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
node_modules/syncfusion/ej2-diagrams/src/diagram/interaction/event-handlers.js line 543:
if (!this.isForeignObject(evt.target) && this.isMouseDown) {document.getElementById(this.diagram.element.id + 'content').focus();}"this.diagram.element.id" here is the whole diagram.
Is there a way to disable this autofocus? Thank you for your answer.
function App() {
return (
<DiagramComponent id="diagram"
//set diagramconstraints as none for static diagram
constraints = {DiagramConstraints.None}
/>
</div>
);
}
|