Edit textblock in tooltip

Hello,
Is it possible to edit a text inside a tooltip ?
If i try to edit it, nothing happens ?
Thank you.

$("ToolTip",
    $(go.Placeholder, { padding: 5 }),
    $(go.TextBlock, { alignment: go.Spot.Top, alignmentFocus: go.Spot.Top, editable: true },
        new go.Binding("text", "Tooltip"))
    )

To avoid confusion, most tools and commands don’t work on Adornments but only on regular Parts such as Nodes and Links.

You could set isActionable to true and handle the click event.
For example: Minimal GoJS Sample

Thank you for your quick answer.
I updated my code to handle the click, but how do I switch the textblock in edit mode ?
I cant find the source code of your example.

                        toolTip:
                            $(go.Adornment, "Spot",
                                $(go.Placeholder),
                                $(go.Panel,
                                    {
                                        alignment: go.Spot.Top, alignmentFocus: go.Spot.Bottom
                                    },
                                    $(go.TextBlock, { editable: true },
                                        new go.Binding("text", "Tooltip"))
                                ),
                                {
                                    isActionable: true,
                                    click: function () {
                                        alert("test");
                                    },
                                    background: "red",
                                    isShadowed: true,
                                    shadowColor: "blue",
                                    shadowBlur: 6
                                }
                            )

As with basically all of our samples, all of the source code for the sample is in the page itself.

I suppose something like:

    click: (e, ad) => {
      e.diagram.commandHandler.editTextBlock(ad.adornedPart.findObject("TB"));
    }

assuming your TextBlock has the name: "TB".