Android Question B4XTable - 4 Questions about SearchField

AHilberink

Active Member
Licensed User
Longtime User
Hi,

I have 4 questions about the SearchField of B4XTable:
1. Is it possible to change the fontsize of the SearchField
2. Is it possible to change the inputtype
3. Is it possible to translate "No matches" and "x to x out of x"
4. Is it possible to disable autocomplete of the keyboard during typing the searchfield?

Thanks for helping.

Best regards,
André
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
1, 2, 4:
B4X:
Sleep(0) 'important as the table layout is not immediately available.
B4XTable1.SearchField.TextField.TextSize = 20
Dim et As EditText = B4XTable1.SearchField.TextField
'do whatever you need with the EditText
3: Modify these fields:
B4X:
Public StringMoreAvailable As String = "(more available)"
Public StringNoMatches As String = "No matches"
Public StringOutOf As String = "out of"
Public StringTo As String = "to"

B4X:
B4XTable1.StringNoMatches = "empty!"
 
Upvote 0
Top