Android Question B4XTable- Hide Navigation buttons but show Searchfield

anglia

Member
Licensed User
Longtime User
I've seen how the Navigation panel can be hidden in a B4XTable but this also hides the Searchfield.

I want to use my own navigation buttons and hide the built-in navigation buttons on the panel.

Is there any way that the navigation buttons can be hidden but the Searchfield is still visible/useable?

Thanks in advance

anglia
 

Mahares

Expert
Licensed User
Longtime User
s there any way that the navigation buttons can be hidden but the Searchfield is still visible/useable?
Are you looking to hide these 5 buttons:
B4X:
B4XTable1.lblFirst.Visible=False
B4XTable1.lblLast.Visible=False
B4XTable1.lblNext.Visible=False
B4XTable1.lblBack.Visible=False
B4XTable1.lblNumber.Visible=False
 
Upvote 0

anglia

Member
Licensed User
Longtime User
Thanks Mahares and Erel

I wasn't aware of these internal labels. It's done the trick!
Thanks again.
 
Upvote 0
Top