Android Question NO SEARCH ON B4XTable

aeric

Expert
Licensed User
Longtime User
V1.20 - Many changes under the hood. New RefreshNow method that refreshes the table synchronously. SetData returns a ResumableSub object and can be used with Wait For to (asynchronously) wait for the data to be ready.
New SearchVisible field and designer property. Use it to hide the search field. Hiding the search field directly will no longer work.
New COLUMN_TYPE_VOID column type. This type is useful for columns that don't hold any data. For example columns with editing buttons. Instead of adding empty values to the Data collection you ignore these columns.
https://www.b4x.com/android/forum/t...ortable-searchable-customizable-table.102322/

Do you have this line?
B4X:
B4XTable1.SetData(data)

The search is not visible when there is no data.
 
Last edited:
Upvote 0

Ryan Pigeon

Member
I am adding data like such:

B4XTable1.sql1.ExecNonQuery2($"INSERT INTO data VALUES(?,?,?,?,?)"$ , Array As Object(Result.Value, "1", txtLocation.Text," ", txtUser.Text.ToUpperCase))
B4XTable1.ClearDataView
 
Upvote 0
Top