我如何获得被拖入jgraph(javascript)中的stackLayout的项目?

时间:2019-06-10 14:41:26

标签: javascript jgraph

我用javascript在jgraph中创建了一个stackLayout,现在我想获取被拖到布局中的项目的值,以确定应该将哪个项目添加到布局中。

我试图向图形对象添加一个事件,但是我不知道如何获取该值。 这就是我创建stackLayout的方式。

this.addEntry('list group erd table', function()
{
    var cell = new mxCell('List', new mxGeometry(0, 0, 140, 110),
        'swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=26;fillColor=none;horizontalStack=0;' +
        'resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;');
    cell.vertex = true;
    cell.insert(sb.cloneCell(field, 'Item 1'));
    cell.insert(sb.cloneCell(field, 'Item 2'));
    cell.insert(sb.cloneCell(field, 'Item 3'));
    return sb.createVertexTemplateFromCells([cell], cell.geometry.width, cell.geometry.height, 'List');
}),

0 个答案:

没有答案