iOS Question [solved] Rename the search input field "hint" on a B4xtable

voxel

Member
Licensed User
Hi,
I want to rename the search input field "hint" on a B4xtable. By default, it has the value "Search", using this code, it adds the text as a "Search" hint but the "Search" value is still present on top.
Thanks for your help

B4X:
TabAnalyse.SearchField.TextField.EditTextHint="Recherche"
 

aeric

Expert
Licensed User
Longtime User
Try
B4X:
TabAnalyse.SearchField.HintText = "Recherche"
TabAnalyse.SearchField.Update
 
Upvote 1

aeric

Expert
Licensed User
Longtime User
Does my answer solve your issue?
If yes, you may edit the title as [solved] or mark my answer as solution.
 
Upvote 0
Top