asales Expert Licensed User Longtime User Feb 10, 2019 #1 1 - How to change the hint? I tried with: B4X: B4XTable1.SearchField.HintText = "Buscar" but don't work. 2 - Is possible to change the height of the SearchField? 3 - Is possible to make the SearchField invisible?
1 - How to change the hint? I tried with: B4X: B4XTable1.SearchField.HintText = "Buscar" but don't work. 2 - Is possible to change the height of the SearchField? 3 - Is possible to make the SearchField invisible?
asales Expert Licensed User Longtime User Feb 10, 2019 #2 Question 1 solved with this code: B4X: Activity.LoadLayout("1") Sleep(0) 'this is required as the table layout is not immediately created. B4XTable1.SearchField.HintText = "Buscar" B4XTable1.SearchField.Update Upvote 0
Question 1 solved with this code: B4X: Activity.LoadLayout("1") Sleep(0) 'this is required as the table layout is not immediately created. B4XTable1.SearchField.HintText = "Buscar" B4XTable1.SearchField.Update
Erel B4X founder Staff member Licensed User Longtime User Feb 10, 2019 #3 B4X: B4XTable1.SearchField.mBase.Height = 60dip B4XTable1.SearchField.mBase.Visible = False Upvote 0
I iglrs1 Member Licensed User Longtime User Sep 5, 2019 #4 Hi, I also want to hide the header panel. 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? Upvote 0
Hi, I also want to hide the header panel. 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 5, 2019 #5 iglrs1 said: but doesn't work. Any help? Click to expand... You should never post questions in existing threads. Upvote 0
iglrs1 said: but doesn't work. Any help? Click to expand... You should never post questions in existing threads.