mxGraph为读取出来的mxe或xml图添加cell事件(禁止cell拖拽修改)

 

 

 为了模仿mxGraph中javascript里面的例子中的userobject.html展示出来的效果,可费了不少功夫,花费了大半天的时间,先总结如下:

  其一:userobject.html中的并没有读取任何mxe或者xml文件,它里面的都是自己造的XML文件,我要做的是先用CS端的Graph画好一张图生成mxe然后进行处理在读出来

  其二:userobject.html显示出来的效果图有单击事件,每单击一个cell(vertex或者edge)都会在右边显示出来一个表单用来展现其全部属性内容。它的缺陷就是,看图的人可以随便拖动并修改cell中的内容,所以我要做的是,能单击事件但不要进行拖动

  其三:mxGraph的拖动效果与graph.setEnabled(false)这个方法是挂钩的,设置true就表示可拖拽修改,反之就不可以,需要说明的是,我们单击的时候肯定是要获取每个cell的内容的,然而,如果你在设置为false的情况下使用

 graph.getSelectionModel().addListener(mxEvent.CHANGE, function(sender, evt)
    {
     selectionChanged(graph);//显示属性面板
    });

这个监听器就获取不到CELL的值,因为我的selectionChanged方法中使用到了cell,之前我在selectionChanged方法里面是通过var cell = graph.getSelectionCell()来获取cell的,这种情况下如果我利用了上面的那个监听器并且设置

graph.setEnabled(false)那么肯定不会触发事件并显示表单,如果在这种情况下设置graph.setEnabled(true)那么一定可以触发得到表单,之后我有试了其他的监听器

    graph.addListener(mxEvent.CLICK, function(sender, evt)
    {
     selectionChanged(graph);
     });

前提是graph.setEnabled(false)了也是不行的,后来这样试了双击的都不可以于是我就想这中间肯定是cell获取不对的问题,后来参考了script其他的两个例子如overlays的单击监听器中

 graph.addListener(mxEvent.CLICK, function(sender, evt)
    {
     var cell = evt.getProperty('cell');

    。。。

    }

 大家发现什么了吗?对了可以通过evt来获取到单击时的cell而不必像原来那样graph.getSelectionCell()来获取选中的了,这样修改下
 graph.addListener(mxEvent.CLICK, function(sender, evt)
    {
     cell= evt.getProperty('cell');
     selectionChanged(graph,cell);
    });
    selectionChanged(graph,cell);

哈哈哈,终于成功了,终于在禁用托债修改cell的情况下触发事件并显示表单详细内容了,现在贡献代码如下

  

 <html>
<head>
<title>显示CELL表单</title>
<script type="text/javascript">mxBasePath = 'src';</script>
<script type="text/javascript" src="mxclient.js"></script>
 <script type="text/javascript">
  function main(container)
  {
   if (!mxClient.isBrowserSupported())
   {
    mxUtils.error('Browser is not supported!', 200, false);
   }
   else
   {
    var graph = new mxGraph(container);
    graph.setCellsResizable(false);
    graph.setEnabled(false);//设置启用,就是允不允许你改变CELL的形状内容。
    graph.setPanning(true);//移动镜头
    //重写方法不允许那条线(edge)可以编辑
    graph.isCellEditable = function(cell)
    {
     return !this.getModel().isEdge(cell)&&!this.getModel().isVertex(cell);
    };
    new mxCellTracker(graph);
    var style = graph.getStylesheet().getDefaultVertexStyle();
    style[mxConstants.STYLE_STROKECOLOR] = 'gray';
    style[mxConstants.STYLE_SHADOW] = true;
    style[mxConstants.STYLE_FILLCOLOR] = '#DFDFDF';
    style[mxConstants.STYLE_GRADIENTCOLOR] = 'white';
    style[mxConstants.STYLE_FONTCOLOR] = 'black';
    style[mxConstants.STYLE_FONTSIZE] = '12';
    style[mxConstants.STYLE_SPACING] = 4;
    
    style = graph.getStylesheet().getDefaultEdgeStyle();
    style[mxConstants.STYLE_STROKECOLOR] = '#0C0C0C';
    style[mxConstants.STYLE_LABEL_BACKGROUNDCOLOR] = 'white';
    //定义为形状的关键。可能的值是一个形状前缀或新定义的任何形状的名称的所有常量。
    style[mxConstants.STYLE_EDGE] = mxEdgeStyle.ElbowConnector;
    style[mxConstants.STYLE_ROUNDED] = true;
    style[mxConstants.STYLE_FONTCOLOR] = 'black';
    style[mxConstants.STYLE_FONTSIZE] = '10';    
    graph.gridSize = 20;
    graph.setResizeContainer(true);
    graph.minimumContainerSize = new mxRectangle(0, 0, 500, 380);
    graph.setBorder(60);
    graph.getModel().beginUpdate();
    try
    { 
     read(graph, '345Formatted.xml');
    }
    finally
    {
     graph.getModel().endUpdate();
    }
    //new mxDivResizer(container);
    var cell;
    graph.addListener(mxEvent.CLICK, function(sender, evt)
    {
     cell= evt.getProperty('cell');
     selectionChanged(graph,cell);
     
    });
    
    selectionChanged(graph,cell);
   }
  }; 
  
  // Parses the mxGraph XML file format
  function read(graph, filename)
  {
   var req = mxUtils.load(filename);
   var root = req.getDocumentElement();
   var dec = new mxCodec(root.ownerDocument);
   dec.decode(root, graph.getModel());
  };

  /**
   * Updates the properties panel //更新属性面板
   */
  function selectionChanged(graph,cell)
  {
   var div = document.getElementById('properties');//获取属性面板
   // Forces focusout in IE //IE中强调焦点移出事件
   graph.container.focus()
   // Clears the DIV the non-DOM way
   div.innerHTML = ''; //清理DIV没有DOM
   // Gets the selection cell
   if (cell == null)
   {
    mxUtils.writeln(div, '当前没有选择一项'); //当没有获取CELL时,就显示什么也没有选择
   }
   else
   {
    var attrs = cell.value.attributes;
    var center = document.createElement('center');
    mxUtils.writeln(center, attrs[0].nodeValue);
    div.appendChild(center);//将创建好的文本标题填入到DIV层里面去
    mxUtils.br(div);
    var form = new mxForm(); //从USER对象的属性中创建一个FORM 
    for (var i = 0; i < attrs.length; i++)
    {
     form.addText(attrs[i].nodeName + ':', attrs[i].nodeValue); //创建文本框
    } 
    div.appendChild(form.getTable()); //将创建的文本框组合成表格追加到DIV里面去vav
    mxUtils.br(div);
   }
  }
 </script>
</head>
<!-- Page passes the container for the graph to the grogram -->
<body onload="main(document.getElementById('graphContainer'))">
<table>
 <tr>
  <td>
   <div id="graphContainer"
    style="border: solid 1px black;overflow:hidden;width:321px;height:241px;">
   </div>
  </td>
  <td valign="top"><!-- 垂直对齐在顶部,这个是属性面板 -->
   <div id="properties"
    style="border: solid 1px black; padding: 10px;">
   </div>
  </td>
 </tr>
</table>
</body>
</html>

 

 

你可能感兴趣的:(JavaScript,html,xml,IE)