S Scantech Well-Known Member Licensed User Longtime User May 30, 2019 #1 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.
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 May 30, 2019 #2 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! B4X: Private textColumn As B4XTableColumn textColumn = B4XTable1.AddColumn("Note", B4XTable1.COLUMN_TYPE_TEXT) textColumn.Searchable = False Upvote 0
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! B4X: Private textColumn As B4XTableColumn textColumn = B4XTable1.AddColumn("Note", B4XTable1.COLUMN_TYPE_TEXT) textColumn.Searchable = False
S Scantech Well-Known Member Licensed User Longtime User May 30, 2019 #3 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
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
M Mahares Expert Licensed User Longtime User May 31, 2019 #4 Scantech said: How do i set both 170dip and Searchable = false Click to expand... B4X: Dim col As B4XTableColumn= B4XTable1.AddColumn("File Name", B4XTable1.COLUMN_TYPE_TEXT) col.Width = 170dip col.Searchable=False Upvote 0
Scantech said: How do i set both 170dip and Searchable = false Click to expand... B4X: Dim col As B4XTableColumn= B4XTable1.AddColumn("File Name", B4XTable1.COLUMN_TYPE_TEXT) col.Width = 170dip col.Searchable=False