I’m getting a blank plugins panel on some projects.
Is it possible that I could be accidentally removing all of the panels? I’m not talking about my own plugin panel but all plugins are gone. On another open project in another window my plugin panel is working fine. I’ve reloaded the plugins and panel still remain blank.
The documentation has how to show a panel but what’s the recommended way to remove it or add and remove from a dialog?
https://adobexdplatform.com/plugin-docs/tutorials/quick-start-panel/
In my case I remove the form from the panel and show it in a dialog and when the dialog is closed I remove it from the dialog and then add it back to the panel.
Here’s how I adding and removing on hide() the panel (not the dialog):
hide(event) {
globalModel.panelVisible = false;
try {
if (event.node && event.node.firstElementChild) {
event.node.firstElementChild.remove();
}
}
catch(error) {
log(error);
}
},
show(event) {
var node = event.node;
var panelNodeContainsNode = elementForm.mainForm ? node.contains(elementForm.mainForm) : false;
if (node.firstElementChild==null || elementForm.mainForm==null || panelNodeContainsNode==false) {
var elementPanel = createElementDialogOrPanel(true, showLabels);
node.appendChild(elementForm.mainForm);
}
}
}
There’s more code for adding and removing from the dialog window.