Reputation: 1605
Is it possible to detect that the vertical scrollbar is visible?
I want to know that so that for different resolution i can change the columns width.
What is happening now is if i have the vertical scrollbar:
If the scrollbar is not on:
The element i want to check the vertical scrollbar is a TableView{ }
Upvotes: 2
Views: 1501
Reputation: 1605
I solved this problem with a property that is inherited in TableView
from the ScrollView
.
The property was the following tableId.__verticalScrollBar.visible
, with this i can get when the scroll is and isnt visible.
Upvotes: 1