I iglrs1 Member Licensed User Longtime User Sep 5, 2019 #1 Hi, I want to hide the header panel in B4XTable. I managed to do it with B4X: B4XTable1.pnlHeader.Visible=False and change its height with B4X: B4XTable1.pnlHeader.Height=0dip but doesn't work. Any help?
Hi, I want to hide the header panel in B4XTable. I managed to do it with B4X: B4XTable1.pnlHeader.Visible=False and change its height with B4X: B4XTable1.pnlHeader.Height=0dip but doesn't work. Any help?
Erel B4X founder Staff member Licensed User Longtime User Sep 6, 2019 #2 The table layout is not immediately ready. It happens because B4XTable loads another layout inside DesignerCreateView and calls Sleep(0) before that. Your code should be: B4X: Sleep(0) B4XTable1.pnlHeader.Visible = False Upvote 0
The table layout is not immediately ready. It happens because B4XTable loads another layout inside DesignerCreateView and calls Sleep(0) before that. Your code should be: B4X: Sleep(0) B4XTable1.pnlHeader.Visible = False
I iglrs1 Member Licensed User Longtime User Sep 6, 2019 #3 Thanks. Is it possible to swipe a B4XTable vertically (similar to TablePanel)? Upvote 0
M Mahares Expert Licensed User Longtime User Sep 7, 2019 #4 iglrs1 said: Is it possible to swipe a B4XTable vertically Click to expand... The answer is no. I asked the same question a while back in this below thread link: https://www.b4x.com/android/forum/t...rtically-and-column_type_date.102606/#content Upvote 0
iglrs1 said: Is it possible to swipe a B4XTable vertically Click to expand... The answer is no. I asked the same question a while back in this below thread link: https://www.b4x.com/android/forum/t...rtically-and-column_type_date.102606/#content
Erel B4X founder Staff member Licensed User Longtime User Sep 15, 2019 #6 TablePanel: https://www.b4x.com/android/forum/t...-swipe-navigation-to-b4xtable.104628/#content Should be possibe. Use DeltaY instead of DeltaX in the Swipe event. Upvote 0
TablePanel: https://www.b4x.com/android/forum/t...-swipe-navigation-to-b4xtable.104628/#content Should be possibe. Use DeltaY instead of DeltaX in the Swipe event.