Is there a way to check if a component (with a given component ID) is currently visible on the screen in Javascript?
I can check if it is “rendered” with
skuid.component.getById(‘COMPONENTID’).isRendered
but this isn’t enough, as it turns out that it being rendered and it being currently visible on the screen have different implications. For instance if I tell it to render with .render(), even if it “isRendered”, if it’s not currently visible on the screen this will cause an error.
Is there a way to check on the component’s actual visibility (the component not being hidden)?
Thanks!