作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我们选择一个单元格并给出一个值时,我正在处理 mxgraph 和图表页面,它应该仅显示为超链接。但是当我使用 html、 anchor 标记或其他方式时,整个代码在单元格中显示为文本。即使我尝试动态输入值,它也会显示为文本。
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。
最佳答案
您需要在标签中启用 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();
};
关于javascript - 将单元格值设置为 mxGraph 中的超链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37396457/
我是一名优秀的程序员,十分优秀!