Android Question B4XTable Is Blank When Displaying Only One Column

Mahares

Expert
Licensed User
Longtime User
I cannot get the table to display any data when I only want to display a one column table.
B4X:
B4XTable2.AddColumn("first", B4XTable2.COLUMN_TYPE_TEXT)
            Dim Data2 As List
            Data2.Initialize
            Dim rs As ResultSet = sql.ExecQuery($"SELECT  FirstName FROM customers"$)
            Do While rs.NextRow
                        Dim row2(1) As Object
                        row2(0) = rs.GetString("FirstName")
                        Data2.Add(row2)
            Loop
            rs.Close
            B4XTable2.EvenRowColor=Colors.Cyan
            B4XTable2.SetData(Data2)
I have some follow-up questions to the above after it is taken care of.
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
Upvote 0
Top