GoJS ライブラリと ExtJS を使用してダイアグラム アプリを構築しています。
GoJS は、div へのレンダラーである必要があります。
<div id="myDiagram" class="diagramStyle"></div>
そして、この div を取得してパネル (タブ パネル) に挿入します。
Ext.onReady(function () {
Ext.create('Ext.container.Viewport', {
layout: 'border',
items: [
{
region: 'north',
xtype: 'toolbar',
padding: '5px',
height: 45,
items: [
'MyApp'
]
},
{
region: 'center',
xtype: 'tabpanel',
margin: '5px',
items: [
{
xtyope: 'panel',
title: 'panel1',
contentEl: Ext.get(myDiagram)
},
{
xtyope: 'panel',
title: 'panel2'
}
]
}
]
});
});
しかし、このアプローチは機能しませんでした。ダイアグラムをクリックして編集すると、いくつかのエラーが発生します。
window.MSGesture && (a.po = new window.MSGesture, a.po.target = b, b.addEventListener("pointerdown", function(b) {
a.po.addPointer(b.pointerId)
これを修正する方法はありますか?またはそれを行うためのより良い方法はありますか?
前もって感謝します!