I have created a SidePanelPlugin and a custom Item. When my plugin is about to load, I notice an error in the log “Error - Unable to identify parent of a ViewItem. FQID not initialized”. My custom items do not have parents, other than the server itself, but then they are not ViewItems, just Items. Everything seems to work. Is this going to be a problem?
The parent of a ViewItem has to be a View and this error can only stem from a ViewItem. Can you double-check that you do not have a ViewItem in the setup?
The error cannot affect your SidePanelPlugin.
There are no ViewItems in my plugin definitions.
The error is logged 700ms after my SidePanelPlugin’s constructor is called and 4ms before my plugin’s Init method is called. There are no other logs in that time interval. It sure seems like it points to my SidePanelPlugin…
But, when I tested with a new user with no views created yet, I don’t get the message. So I’m not going to worry about it.
Thanks, Bo