I am currently utilizing the Scrolling Table feature in Gojs to establish connections between the rows of two tables, which I'll refer to as the Input and Output tables. Both of these tables are created using the Scrolling-Table functionality within Gojs.
My issue arises when I attempt to delete a specific row from the Output table. Due to each table acting as a Gojs Node, clicking on a row selects the entire table (Node) rather than the individual row itself.
Below is the code snippet that I have been working with:
var nodeJson;
var $ = go.GraphObject.make;
var inputFieldTable = [
{ ID: "001", Name: "Input 1", Text: "Err1" },
{ ID: "002", Name: "Input 2", Text: "Err2" },
{ ID: "003", Name: "Input 3", Text: "Err3" },
{ ID: "004", Name: "Input 4", Text: "Err4" },
{ ID: "005", Name: "Input 5", Text: "Err5" },
{ ID: "006", Name: "Input 6", Text: "Err6" },
{ ID: "007", Name: "Input 7", Text: "Err7" }
];
var outputFieldTable = [
{ ID: "101", Name: "Output 1", Text: "Integer" },
...
<b>This text has been modified for uniqueness.</b>