@riya1 wrote:
Hi
i am connecting two tables.But I am not ABLE TO CONNECTING TWO COLUMNS.i don't think what's the problem port is not working properly or any other problem.
template is like this:
name: "SCROLLING",
desiredSize: new go.Size(150, 150),
"TABLE.itemTemplate":
goJs(go.Panel, "TableRow",
{
defaultStretch: go.GraphObject.Horizontal,
fromSpot: go.Spot.LeftRightSides, toSpot: go.Spot.LeftRightSides,
toLinkable: true, fromLinkable: true,
},
new go.Binding("portId", "LOGICALCOLUMNNAME"),
goJs("CheckBox", "checked", { column: 0,width:15 },
{ "_doClick": function (e, obj) { Ciel.Process.ProcessDesign.JoinStep.UpdatedColumnInTable(e, obj); } },
new go.Binding("checked", "checked").makeTwoWay()),
goJs(go.TextBlock, { column: 1 }, new go.Binding("text", "LOGICALCOLUMNNAME"))
I am using scrolling table concept
Posts: 2
Participants: 2