将单元格值设置为mxGraph中的超链接

时间:2016-05-23 16:50:01

标签: javascript jquery html mxgraph

我正在处理mxgraph和图形页面,当我们选择一个单元格并给出一个值时,它应该只显示为超链接。但是当我使用html,锚标签或其他方式时,整个代码在单元格中显示为文本。即使我尝试动态输入值,它也会显示为文本。

  var Element123 = "<html><a href=''/Graph/Graph/' + globals.getProjID() + '/' + newValue +' '>' "+ selctedItem +" </a></html>"
            this.graph.labelChanged(cell, Element123, evt);
            this.graph.getModel().endUpdate();
        }

这里newValue是下拉列表中所选选项的ID。

2 个答案:

答案 0 :(得分:0)

以下是我在mxGraph中为单元格值添加click事件的方法。 -

mxEvent.addListener(name, "click", function () { } );

答案 1 :(得分:0)

您需要在标签中启用HTML。您可以通过调用graph.setHtmlLabels(true)为所有单元格执行此操作。或者您可以覆盖以下方法来决定每个单元格:

/**
 * Function: isHtmlLabel
 * 
 * Returns true if the label must be rendered as HTML markup. The default
 * implementation returns <htmlLabels>.
 * 
 * Parameters:
 * 
 * cell - <mxCell> whose label should be displayed as HTML markup.
 */
mxGraph.prototype.isHtmlLabel = function(cell)
{
    return this.isHtmlLabels();
};