gpt4 book ai didi

javascript - 如何从 GoJS 中的 DataInspector 扩展获取文本值?

转载 作者:行者123 更新时间:2023-11-28 03:24:57 25 4
gpt4 key购买 nike

我正在使用数据检查器扩展,如图所示here :

  • 我只想在其中一个字段中输入一个数字(即maxLinks) 设置选定的允许的最大链接数节点。我如何检索在其中一个字段中输入的输入?

  • 此外,可以对可编辑文本字段执行同样的操作(检索文本输入)?

非常感谢。

最佳答案

在您引用的示例中以及典型用法(例如示例组织结构图编辑器中)https://gojs.net/latest/samples/orgChartEditor.html ,DataInspector 显示模型中选定节点的数据对象的属性。其中一些属性是可编辑的。当用户修改值并且焦点丢失时,检查器代码会提交一个事务来修改该数据对象的属性值。

因为Node(或Link)模板中有一些GraphObject属性的Binding,修改通过调用 Model.set 的 data 属性将更新相应的 GraphObject 属性,这将导致图表更新。

在您的情况下,您需要从节点数据对象上的“maxLinks”属性绑定(bind)GraphObject.fromMaxLinks。这显示在下面的节点模板中。

请注意 TextBlock.text 绑定(bind)的工作原理,以便用户可以就地编辑文本或在检查器中编辑文本。

完整示例:

<!DOCTYPE html>
<html>
<head>
<title>GoJS Sample Using DataInspector</title>
<!-- Copyright 1998-2019 by Northwoods Software Corporation. -->
<meta charset="UTF-8">
<script src="https://unpkg.com/gojs"></script>
<link rel="stylesheet" href="../extensions/DataInspector.css" />
<script src="../extensions/DataInspector.js"></script>
<script id="code">
function init() {
var $ = go.GraphObject.make;

myDiagram =
$(go.Diagram, "myDiagramDiv",
{ "undoManager.isEnabled": true });

myDiagram.nodeTemplate =
$(go.Node, "Auto",
$(go.Shape,
{ fill: "white", portId: "", fromLinkable: true, toLinkable: true, cursor: "pointer" },
// THIS IS THE CRUCIAL BINDING, from data.maxLinks to GraphObject.fromMaxLinks
new go.Binding("fromMaxLinks", "maxLinks"),
new go.Binding("fill", "color")),
$(go.TextBlock,
{ margin: 8, editable: true },
new go.Binding("text").makeTwoWay())
);

myDiagram.model = new go.GraphLinksModel(
[
{ key: 1, text: "Alpha", color: "lightblue" },
{ key: 2, text: "Beta", color: "orange" },
{ key: 3, text: "Gamma", color: "lightgreen" },
{ key: 4, text: "Delta", color: "pink" }
]);

var inspector = new Inspector("myInspectorDiv", myDiagram,
{
properties:
{
key: { readOnly: true, show: Inspector.showIfPresent },
maxLinks: { type: "number", defaultValue: Infinity, show: Inspector.showIfNode }
}
});
}
</script>
</head>
<body onload="init()">
<div id="myDiagramDiv" style="border: solid 1px black; width:100%; height:600px"></div>
<div id="myInspectorDiv" class="inspector"></div>
</body>
</html>

关于javascript - 如何从 GoJS 中的 DataInspector 扩展获取文本值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58740863/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com