There is currently no way for a Tooltip to trigger a manual "position()" to re-position the tooltip.
One way would be to add a ref on the tether object and make a function getTetherInstance on the Tooltip.
getTetherInstance(){
if (this.tetherContent && this.tetherContent._tether){
return this.tetherContent._tether;
}
return null;
}
<TetherContent
ref={(ref) => this.tetherContent = ref}
>
What do you think?
There is currently no way for a Tooltip to trigger a manual "position()" to re-position the tooltip.
One way would be to add a ref on the tether object and make a function getTetherInstance on the Tooltip.
What do you think?