Hide Tagalong Button of 3D Panel
Is there a way to disable and hide the Tagalong buttons of the 3D panels? I've found that people are pressing it without knowing what it does, and they are messing up the layout of the experience.

Thanks!
Is there a way to disable and hide the Tagalong buttons of the 3D panels? I've found that people are pressing it without knowing what it does, and they are messing up the layout of the experience.

Thanks!
Hi
so I think you can use possibly one of the events on this widget. I see that tethered and untethered will fire when we click the symbol which will change the tagalong property :

so possibly you can use some function in the tethered event which will set the tagalong property of the 3DPanel to false e.g.:
$scope.app.myTetheredEvtCallback=function(){
console.warn("INFO:: Tethered Event called")
$scope.setWidgetProp("3DPanel-1","tagalong",false);
};
so you can write in the JS box of the tethered event call
app.myTetheredEvtCallback();
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.