UNPKG

gojs

Version:

Interactive diagrams, charts, and graphs, such as trees, flowcharts, orgcharts, UML, BPMN, or business diagrams

251 lines (228 loc) 8.64 kB
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>GoJS Buttons -- Northwoods Software</title> <!-- Copyright 1998-2020 by Northwoods Software Corporation. --> <script src="../release/go.js"></script> <script src="goIntro.js"></script> </head> <body onload="goIntro()"> <div id="container" class="container-fluid"> <div id="content"> <h1>Buttons</h1> <p> For your convenience we have defined several <a>Panel</a>s for common uses. These include "Button", "TreeExpanderButton", "SubGraphExpanderButton", "PanelExpanderButton", and "ContextMenuButton". </p> <p> These predefined panels can be used as if they were <a>Panel</a>-derived classes in calls to <a>GraphObject,make</a>. They are implemented as simple visual trees of <a>GraphObject</a>s in <a>Panel</a>s, with pre-set properties and event handlers. </p> <p> You can see a copy of their definitions in this file: <a href="../extensions/Buttons.js">Buttons.js</a>. </p> <p> See samples that make use of buttons in the <a href="../samples/index.html#buttons">samples index</a>. In addition, see the <a href="../extensions/Checkboxes.html">Checkboxes</a> extension for an example of using "CheckBoxButton". </p> <h2 id="GeneralButtons">General Buttons</h2> <p> The most general kind of predefined <a>Panel</a> is "Button". </p> <pre class="lang-js" id="button"> diagram.nodeTemplate = $(go.Node, "Auto", { locationSpot: go.Spot.Center }, $(go.Shape, "Rectangle", { fill: "gold" }), $(go.Panel, "Vertical", { margin: 3 }, $("Button", { margin: 2, click: incrementCounter }, $(go.TextBlock, "Click me!")), $(go.TextBlock, new go.Binding("text", "clickCount", function(c) { return "Clicked " + c + " times."; })) ) ); function incrementCounter(e, obj) { var node = obj.part; var data = node.data; if (data && typeof(data.clickCount) === "number") { node.diagram.model.commit(function(m) { m.set(data, "clickCount", data.clickCount + 1); }, "clicked"); } } diagram.model = new go.GraphLinksModel( [ { clickCount: 0 } ]); </pre> <script>goCode("button", 600, 150)</script> <h2 id="TreeExpanderButtons">TreeExpanderButtons</h2> <p> It is common to want to expand and collapse subtrees. It is easy to let the user control this by adding an instance of the "TreeExpanderButton" to your node template. </p> <pre class="lang-js" id="treeExpanderButton"> diagram.nodeTemplate = $(go.Node, "Spot", $(go.Panel, "Auto", $(go.Shape, "Rectangle", { fill: "gold" }), $(go.TextBlock, "Click small button\nto collapse/expand subtree", { margin: 5 }) ), $("TreeExpanderButton", { alignment: go.Spot.Bottom, alignmentFocus: go.Spot.Top }, { visible: true }) ); diagram.layout = $(go.TreeLayout, { angle: 90 }); diagram.model = new go.GraphLinksModel( [ { key: 1 }, { key: 2 } ], [ { from: 1, to: 2 } ] ); </pre> <script>goCode("treeExpanderButton", 600, 200)</script> <h2 id="SubGraphExpanderButtons">SubGraphExpanderButtons</h2> <p> It is also common to want to expand and collapse groups containing subgraphs. You can let the user control this by adding an instance of the "SubGraphExpanderButton" to your group template. </p> <pre class="lang-js" id="subgraphExpanderButton"> diagram.groupTemplate = $(go.Group, "Auto", $(go.Shape, "Rectangle", { fill: "gold" }), $(go.Panel, "Vertical", { margin: 5, defaultAlignment: go.Spot.Left }, $(go.Panel, "Horizontal", $("SubGraphExpanderButton", { margin: new go.Margin(0, 3, 5, 0) }), $(go.TextBlock, "Group") ), $(go.Placeholder) ) ); diagram.model = new go.GraphLinksModel( [ { key: 0, isGroup: true }, { key: 1, group: 0 }, { key: 2, group: 0 }, { key: 3, group: 0 } ] ); </pre> <script>goCode("subgraphExpanderButton", 600, 150)</script> <h2 id="PanelExpanderButtons">PanelExpanderButtons</h2> <p> It is common to want to expand and collapse a piece of a node, thereby showing or hiding details that are sometimes not needed. It is easy to let the user control this by adding an instance of the "PanelExpanderButton" to your node template. The second argument to <a>GraphObject,make</a> should be a string that names the element in the node whose <a>GraphObject.visible</a> property you want the button to toggle. </p> <pre class="lang-js" id="panelExpanderButton"> diagram.nodeTemplate = $(go.Node, "Auto", $(go.Shape, { fill: "gold" }), $(go.Panel, "Table", { defaultAlignment: go.Spot.Top, defaultColumnSeparatorStroke: "black" }, $(go.Panel, "Table", { column: 0 }, $(go.TextBlock, "List 1", { column: 0, margin: new go.Margin(3, 3, 0, 3), font: "bold 12pt sans-serif" }), $("PanelExpanderButton", "LIST1", { column: 1 }), $(go.Panel, "Vertical", { name: "LIST1", row: 1, column: 0, columnSpan: 2 }, new go.Binding("itemArray", "list1")) ), $(go.Panel, "Table", { column: 1 }, $(go.TextBlock, "List 2", { column: 0, margin: new go.Margin(3, 3, 0, 3), font: "bold 12pt sans-serif" }), $("PanelExpanderButton", "LIST2", { column: 1 }), $(go.Panel, "Vertical", { name: "LIST2", row: 1, column: 0, columnSpan: 2 }, new go.Binding("itemArray", "list2")) ) ) ); diagram.model = new go.GraphLinksModel([ { key: 1, list1: [ "one", "two", "three", "four", "five" ], list2: [ "first", "second", "third", "fourth" ] } ]); </pre> <script>goCode("panelExpanderButton", 600, 200)</script> <h2 id="ContextMenuButtons">ContextMenuButtons</h2> <p> Although you can implement context menus in any way you choose, it is common to use the predefined "ContextMenuButton". </p> <pre class="lang-js" id="contextMenuButtons"> diagram.nodeTemplate = $(go.Node, "Auto", $(go.Shape, "Rectangle", { fill: "gold" }), $(go.TextBlock, "Use ContextMenu!", { margin: 5 }) ); diagram.nodeTemplate.contextMenu = $("ContextMenu", $("ContextMenuButton", $(go.TextBlock, "Shift Left"), { click: function(e, obj) { shiftNode(obj, -20); } }), $("ContextMenuButton", $(go.TextBlock, "Shift Right"), { click: function(e, obj) { shiftNode(obj, +20); } }) ); function shiftNode(obj, dist) { var adorn = obj.part; var node = adorn.adornedPart; node.diagram.commit(function(d) { var pos = node.location.copy(); pos.x += dist; node.location = pos; }, "Shift"); } diagram.model = new go.GraphLinksModel( [ { key: 1 } ] ); </pre> <script>goCode("contextMenuButtons", 600, 150)</script> <p> For an example of defining context menus using HTML, see the <a href="../samples/customContextMenu.html">Custom ContextMenu sample</a>. </p> <h2 id="ButtonDefinitions">Button Definitions</h2> <p> The implementation of all predefined buttons is provided in <a href="../extensions/Buttons.js">Buttons.js</a> in the Extensions directory. You may wish to copy and adapt these definitions when creating your own buttons. </p> <p> Those definitions might not be an up-to-date description of the actual standard button implementations that are in <b>GoJS</b> and used by <a>GraphObject,make</a>. </p> <p> Note that the definitions of those buttons makes use of the <a>GraphObject.defineBuilder</a> static function. That extends the behavior of <a>GraphObject,make</a> to allow the creation of fairly complex visual trees by name with optional arguments. You can find the definitions of various kinds of controls throughout the samples and extensions, such as at: <ul> <li><a href="../extensions/Buttons.js">Buttons.js</a></li> <li><a href="../extensions/HyperlinkText.js">HyperlinkText.js</a></li> <li><a href="../extensions/ScrollingTable.js">ScrollingTable.js</a></li> <li><a href="../extensions/ScrollingTable.js">AutoRepeatButton</a></li> </ul> </p> </div> </div> </body> </html>