Index: Gruntfile.js =================================================================== diff -u -rd9de2499c7964bf91a39544c3fb8ddb030343b1a -r4deb03afef27b1268fc1060c57d1ee91ecebfd1d --- Gruntfile.js (.../Gruntfile.js) (revision d9de2499c7964bf91a39544c3fb8ddb030343b1a) +++ Gruntfile.js (.../Gruntfile.js) (revision 4deb03afef27b1268fc1060c57d1ee91ecebfd1d) @@ -61,7 +61,7 @@ "/v2", "/php", ], - host: "www.313.co.kr", + host: "a-rms.net", port: 80, https: false, changeOrigin: true FishEye: Tag 4deb03afef27b1268fc1060c57d1ee91ecebfd1d refers to a dead (removed) revision in file `arms/index.backup'. FishEye: No comparison available. Pass `N' to diff? FishEye: Tag 4deb03afef27b1268fc1060c57d1ee91ecebfd1d refers to a dead (removed) revision in file `arms/index.backup.html'. FishEye: No comparison available. Pass `N' to diff? Index: arms/js/detail.js =================================================================== diff -u -r584a050f1c7bf1b5fc59e89bf364e79679ed232a -r4deb03afef27b1268fc1060c57d1ee91ecebfd1d --- arms/js/detail.js (.../detail.js) (revision 584a050f1c7bf1b5fc59e89bf364e79679ed232a) +++ arms/js/detail.js (.../detail.js) (revision 4deb03afef27b1268fc1060c57d1ee91ecebfd1d) @@ -106,7 +106,9 @@ } function bindDataDetailTab(ajaxData) { + console.log(ajaxData); + //제품(서비스) 데이터 바인딩 var selectedPdServiceText = ajaxData.pdService_c_title; let contents = ajaxData.reqAdd_c_req_contents; @@ -120,7 +122,7 @@ $("#detailview_req_id").val(selectedJsTreeId); $("#detailview_req_name").val(ajaxData.reqAdd_c_title); -//radio 버튼 - 선택 초기화 + //radio 버튼 - 선택 초기화 $("#detailview_req_priority label").removeClass("active"); $("#detailview_req_difficulty label").removeClass("active"); $("#detailview_req_state label").removeClass("active"); FishEye: Tag 4deb03afef27b1268fc1060c57d1ee91ecebfd1d refers to a dead (removed) revision in file `gojs.html'. FishEye: No comparison available. Pass `N' to diff? Index: reference/gojs/gojs.html =================================================================== diff -u --- reference/gojs/gojs.html (revision 0) +++ reference/gojs/gojs.html (revision 4deb03afef27b1268fc1060c57d1ee91ecebfd1d) @@ -0,0 +1,639 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Flow Builder | GoJS + + + + + + + +
+
+ + + + + + +
+ + + + + + +
+
+ + + +
+ +
+ + +
+ + +
+ +
+
+

GoJS Features in this sample

+ + +

Layered Digraph Layout

+

+ This predefined layout is used for placing Nodes of a general directed graph in layers (rows or columns). This is more general than TreeLayout, + as it does not require that the graph be tree-structured. + More information can be found in the GoJS Intro. +

+

+ Related samples +

+
+ + + +

Context Menus

+

+ A GoJS context menu is an Adornment that is shown when the user context-clicks (right mouse click or long touch hold) + an object that has its GraphObject.contextMenu set. + The context menu is bound to the same data as the part itself. +

+

+ It is typical to implement a context menu as a "ContextMenu" Panel containing "ContextMenuButton"s, + as you can see in the code below in the assignment of the Node's GraphObject.contextMenu and Diagram.contextMenu properties. + Each "ContextMenu" is just a "Vertical" Panel Adornment that is shadowed. + Each "ContextMenuButton" is a Panel on which you can set the GraphObject.click event handler. + In the event handler obj.part will be the whole context menu Adornment. + obj.part.adornedPart will be the adorned Node or Link. + The bound data is obj.part.data, which will be the same as obj.part.adornedPart.data. +

+

+ More information can be found in the GoJS Intro. +

+

+ Related samples +

+
+ + + +

Tools

+

+ Tools handle all input events, such as mouse and keyboard interactions, in a Diagram. + There are many kinds of predefined Tool classes that implement all of the common operations that users do. +

+

+ For flexibility and simplicity, all input events are canonicalized as InputEvents and + redirected by the diagram to go to the Diagram.currentTool. + By default the Diagram.currentTool is an instance of ToolManager held as the Diagram.toolManager. + The ToolManager implements support for all mode-less tools. + The ToolManager is responsible for finding another tool that is ready to run and then making it the new current tool. + This causes the new tool to process all of the input events (mouse, keyboard, and touch) until the tool decides that it is finished, + at which time the diagram's current tool reverts back to the Diagram.defaultTool, which is normally the ToolManager, again. +

+

+ More information can be found in the GoJS Intro. +

+

+ Related samples +

+
+ + + +

Buttons

+

+ GoJS defines several Panels for common uses. + These include "Button", "TreeExpanderButton", "SubGraphExpanderButton", "PanelExpanderButton", "ContextMenuButton", and "CheckBoxButton". + "ContextMenuButton"s are typically used inside of "ContextMenu" Panels; + "CheckBoxButton"s are used in the implementation of "CheckBox" Panels. +

+

+ These predefined panels can be used as if they were Panel-derived classes in calls to GraphObject.make. + They are implemented as simple visual trees of GraphObjects in Panels, + with pre-set properties and event handlers. +

+

+ More information can be found in the GoJS Intro. +

+

+ Related samples +

+
+ +
+
+ + + + \ No newline at end of file Index: sitemap.xml =================================================================== diff -u -r308f01c5fafdeb2ebbca120ce13ad3f6b1e93b7a -r4deb03afef27b1268fc1060c57d1ee91ecebfd1d --- sitemap.xml (.../sitemap.xml) (revision 308f01c5fafdeb2ebbca120ce13ad3f6b1e93b7a) +++ sitemap.xml (.../sitemap.xml) (revision 4deb03afef27b1268fc1060c57d1ee91ecebfd1d) @@ -4,10 +4,10 @@