I am trying to create a powerBi visual. Let's say everything is working correctly. But the problem I have is at the moment of activating the Autodesk.PropertiesManager extension. Let's say I do it in the following way.
this.forge_viewer.activateExtension("Autodesk.PropertiesManager","0");
Until the moment you click. If the call to the extension works for me. And it opens the extension but it always shows me the properties of the model. That are reflected in the following image.
But the idea is that according to an array or the input of a single identifier of an element, the property will be shown.
Example:
A selection is made in powerBI (This entry can be translated as an object identifier).
The viewer makes a selection with isolate (this.forge_viewer.isolate(dbIds))
the viewer activates the properties tab but instead of giving the information of the model (The image iserted). It identifies the ID and exits the tab but of the element. Not the one of the model in general.
I was testing with the following lines of code
this.forge_viewer.activateExtension("Autodesk.PropertiesManager","0");
this.forge_viewer.setPropertiesOnSelect(true);