我在JBPM 6中使用Oryx。当我在FireFox中使用Oryx时,它没有任何问题,但是在IE10中,11条SVG序列行没有显示箭头。
在IE (10或11)中打开Oryx (Workflow Designer),单击Start事件(拖动到编辑器),然后单击Task小框-它将添加一个任务框,您将看到最后的连接线没有箭头。
请告诉我出了什么问题,谢谢
发布于 2016-02-12 11:46:25
最后,我在注释部分引用了几个链接,并在命令行173行定义的update函数中更改oryx编辑器svgmarker.js文件中的代码。文件路径: oryx /editor/client/script/Core/SVG/svgmarker.js代码添加到更新函数中:
    var cusMarkerID = document.getElementById(this.element.id);
    //update old values to prepare the next update
    this.oldRefX = this.refX;
    this.oldRefY = this.refY;
    this.oldMarkerWidth = this.markerWidth;
    this.oldMarkerHeight = this.markerHeight;
    this.element.parent = cusMarkerID.parentNode;
    this.element.parent.removeChild(cusMarkerID);
    this.element.appendChild(cusMarkerID);微软在IE帮助文档中提出了这一建议。
https://stackoverflow.com/questions/24324887
复制相似问题