Android Question B4XTable Edit Column Title at Runtime

mangojack

Well-Known Member
Licensed User
Longtime User
I have tried to change a column title on the fly with no luck.

B4X:
Private DateColumn As B4XTableColumn   'Global declaration

Sub Activity_Create(FirstTime As Boolean)
      
    DateColumn = B4XTable1.AddColumn("Date", B4XTable1.COLUMN_TYPE_TEXT) 
    '.....................
         
    'then somewhere later ....  
    DateColumn.Title = "Date Recieved"

Is this the correct method .. what am I missing

Many thanks .. Cheers
 
Top