You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the tab widgets uses visibility: hidden to hide a view.
This works fine when used in the grid system, as elements which use the same columns/rows are layered above each other.
But if you try to use this without the grid system, the elements still reserve the space on the screen, as hidden: invisible only hides them, but doesn't set the size to zero.
So I would like to ask it this can be changed to display: none.
I already tested your sample files with this fix and they still render the same way.
Regards,
Tobias
The text was updated successfully, but these errors were encountered:
display: none was also my first choice, but elements with display: none has zero dimensions what causes trouble on components which need these for position calculation like slider (Rangeable). As an other solution for this problem we could emit a custom 'visibilityChanged' and the slider must subscribe this event and re-render it self.
Ok, so this was the problem with the slider widget a few days ago?
In this case, maybe sticking with visibility: hidden would be the better idea.
Even if someone (me) wants to build a layout without the default grid, there's most likely a way to build a similar layout with divs stacked on top of each other.
I currently try to build a responsive/mobile layout with a fixed footer and will report how it works out that way. ;)
I guess wrapping the single parts of the UI in fixed divs might work.
Hi Mario,
I already have a first question. ;)
Currently the tab widgets uses
visibility: hidden
to hide a view.This works fine when used in the grid system, as elements which use the same columns/rows are layered above each other.
But if you try to use this without the grid system, the elements still reserve the space on the screen, as
hidden: invisible
only hides them, but doesn't set the size to zero.So I would like to ask it this can be changed to
display: none
.I already tested your sample files with this fix and they still render the same way.
Regards,
Tobias
The text was updated successfully, but these errors were encountered: