Android Question B4XTable filter 1 of the column

Scantech

Well-Known Member
Licensed User
Longtime User
Is there a way in B4XTable to eliminate a search with 1 of the columns? I have 7 columns and 1 of them (File Name) which i don't need in searching.
 

jimmyF

Active Member
Licensed User
Longtime User
You might want to experiment a bit with this control.
There is a lot here and really worth exploring.
You never know what you may discover! :D
B4X:
Private textColumn As B4XTableColumn
textColumn = B4XTable1.AddColumn("Note", B4XTable1.COLUMN_TYPE_TEXT)
textColumn.Searchable = False
 
Upvote 0

Scantech

Well-Known Member
Licensed User
Longtime User
Thanks it gave me some ideas.

I am using this
B4X:
        B4XTable1.AddColumn("File Name", B4XTable1.COLUMN_TYPE_TEXT).Width = 170dip

I do see an option for Searchable after (period) where width is in place.

How do i set both 170dip and Searchable = false in that line? If can not do it, no worries. I will use the code you provided
 
Upvote 0
Top