This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.show(); | |
console.clear(); | |
let source = []; | |
$(selection).filter("concept").each(c => { | |
let element = { | |
obj: c.concept, | |
id: c.concept.id, | |
}; | |
source.push(element); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Author: Thomas Klok Rohde | |
Description: Proof-of-concept of how to use a Browser to collect form data. | |
*/ | |
console.show(); | |
console.clear(); | |
const SWT = Java.type('org.eclipse.swt.SWT'); | |
const FillLayout = Java.type('org.eclipse.swt.layout.FillLayout'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Author: Thomas Klok Rohde | |
Description: Layout ArchiMate views using ELK (Eclipse Layout Kernel) compiled to JavaScript. The current implementation does not consider edges with edges (sections). | |
WARNING: This has only been tested on Windows 10 with Edge (WebView2) | |
History: | |
October 11, 2022 : Created with base set of scripts | |
*/ | |
console.show(); | |
console.clear(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Author: Thomas Klok Rohde | |
Description: Insert chart to view | |
History: | |
October 11, 2022 : Created with base set of scripts | |
*/ | |
console.show(); | |
console.clear(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Author: Thomas Klok Rohde | |
Description: Edit properties of selected elements in a spreadsheet | |
History: | |
October 22, 2022 : Created | |
*/ | |
console.show(); | |
console.clear(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Author: Thomas Klok Rohde | |
Description: Selection sensitive menu system for curated scripts | |
History: | |
October 2, 2022 : Created with base set of scripts | |
*/ | |
console.show(); | |
console.clear(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Author: Thomas Klok Rohde, Danske Bank A/S | |
Description: Example usage of show_form.js - Insert chart JSON into property field. | |
Dependencies: https://github.com/jsonform/jsonform | |
History: | |
October 11, 2022 : Created with base set of scripts | |
*/ | |
console.show(); | |
console.clear(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Author: Thomas Klok Rohde | |
Description: Edit documentation markdown | |
History: | |
November 12, 2022: Created. | |
*/ | |
console.show(); | |
console.clear(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Author: Thomas Klok Rohde | |
Description: | |
Insert labels on the current view, or delete labels if no property is selected | |
If a view is selected all elements will be labeled, or if an element is selected, | |
all view elements with the same type will be labelled. | |
Dependencies: | |
Thanks to Adam Ernst Bisek: https://github.com/adambisek/string-pixel-width | |
History: | |
November 16, 2022 : Created |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Author: Thomas Klok Rohde | |
Description: | |
Explore the entire model | |
Dependencies: | |
- Vis Network: https://github.com/visjs/vis-network. | |
- Bootstrap CSS | |
- A modern webbrowser with support for the DIALOG element | |
History: | |
November 27, 2022 : Created |
OlderNewer