基本原语Organigram -disable点击

时间:2015-04-21 13:28:10

标签: javascript jquery iframe

我有iframe,其中包含我的organigram(basicprimitives)。 问题是如何禁用此iframe中的所有点击次数?并且稍后为特定项目(类名称)启用它。 下面的代码显示了iframe选择和organigram属性(sector_options)。

document.getElementById('organigram-iFrame').contentWindow.sector_options.

如果有人可以帮助我解决这个问题,我会感到沮丧。

2 个答案:

答案 0 :(得分:0)

您应该能够替换onmousedown事件,如下面的答案所示:

Disable click on a div

document.getElementById('organigram-iFrame').onmousedown = new function ("return false");

这就是你要找的东西吗?

答案 1 :(得分:0)

Basic Primitives图支持navigationMode选项,如果需要,禁用所有用户交互。

navigationMode = primitives.common.NavigationMode.Inactive;

尝试使用网站演示来确认所需的行为: enter image description here