@abhargav wrote:
for example in http://gojs.net/latest/samples/records.html
I hover on first row and I want a button to be specifically showed for row1, i added hoverDelay: 200 in
goMake(go.Node,{hoverDelay: 200},"Auto", new go.Binding("location", "loc", go.Point.parse).makeTwoWay(go.Point.stringify), // this rectangular shape surrounds the content of the node this.goMake(go.Shape,
I also implemented below ad per docs
mouseHover:(e, obj) =>{ var node = obj.part; this.nodeHoverAdornment.adornedObject = node; node.addAdornment("mouseHover", this.nodeHoverAdornment); },Question1:-Please help where to put hoverDelay: 200, in my diagrom i have multiple nodes.
2:- when i remove hoverDelay things work fine and delay is large in showing buttons, but the Hi!/Bye BUTTON always apprear in centre of node which has table I need this near/next to selected row, I have alignment: go.Spot.Left,alignmentFocus: go.Spot.Right.. played around with this could not place it near to selected row. Any clue?
Posts: 2
Participants: 2