You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First, thank you for your work on this @GordonSmith 🙏 There is a lot of potential here and I imagine one day I will be working on Observable notebooks exclusively in VS Code.
I'm testing out the notebook extension and I'm having trouble rendering a cell that renders with no issues on observablehq.com:
How can I debug this notebook in VS Code like I would by using the console in Chrome Devtools? I checked the "Output" panel and I don't see Observable JS in the list of available outputs.
The text was updated successfully, but these errors were encountered:
In my world "element" has not been attached to the live DOM at the time you initialise Handsontable and it fails with an exception:
So how did I get to that point:
Downloaded your Notebook and opened it in VS Code
I enabled the Notebook preview option:
Next I opened the "Developer Tools":
At which point you are now debugging the Preview Page as a regular HTML page. So I enabled "Pause on caught exception" on skipped through the exceptions until I spotted one inside the Handson code base and worked it out from there...
Also your CSS files won't load as they need the "https" in the URL as they will default to "file" in my world.
@GordonSmith Thank you for the detailed response. I had no idea that VS Code had a developer tools. I will use this method in the meantime. As for my specific error, what do you suggest as a workaround? Do I need to use document.createElement vs. the html template literal?
First, thank you for your work on this @GordonSmith 🙏 There is a lot of potential here and I imagine one day I will be working on Observable notebooks exclusively in VS Code.
I'm testing out the notebook extension and I'm having trouble rendering a cell that renders with no issues on observablehq.com:
Here's a link to the notebook: https://observablehq.com/@gnestor/table-demo
How can I debug this notebook in VS Code like I would by using the console in Chrome Devtools? I checked the "Output" panel and I don't see Observable JS in the list of available outputs.
The text was updated successfully, but these errors were encountered: