A anglia Member Licensed User Longtime User Jun 23, 2020 #1 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
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
M Mahares Expert Licensed User Longtime User Jun 23, 2020 #2 anglia said: s there any way that the navigation buttons can be hidden but the Searchfield is still visible/useable? Click to expand... 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 said: s there any way that the navigation buttons can be hidden but the Searchfield is still visible/useable? Click to expand... 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
Erel B4X founder Staff member Licensed User Longtime User Jun 24, 2020 #3 Note that the table layout will not be immediately ready. You should add Sleep(0) after you load the layout and before you access the internal views. Upvote 0
Note that the table layout will not be immediately ready. You should add Sleep(0) after you load the layout and before you access the internal views.
A anglia Member Licensed User Longtime User Jun 24, 2020 #4 Thanks Mahares and Erel I wasn't aware of these internal labels. It's done the trick! Thanks again. Upvote 0