I am building a jupyter lab extension. I have managed to create an extension which opens a tab from the launcer. From this tab, I want a user to be able to click on a feature and be navigated to a new tab. Is this possible? I am new to jupyter lab extensions
I am exploring widgets
I'm not sure if you can use the
ILabShell
interface from a widget, but you can use theDocumentManager
interface. TheopenOrReveal
method should do what you want.The following should work: