Hi
How to change runtime/programmatically the field title that come from B4XPreferencesDialog.loadfromjson fields?
How to change runtime/programmatically the field title that come from B4XPreferencesDialog.loadfromjson fields?
For Each pi As B4XPrefItem In p.PrefItems
Log(pi.Title)
Next
Dim pi As B4XPrefItem = p.PrefItems.Get(1)
pi.Title = "new title"
p.CustomListView1.Clear 'required to force the layout to be recreated
Dim column As B4XTableColumn = B4XTable1.GetColumn(ColumnId)
Log(column.Title)
column.Title = "New Title"
Log(column.Title)
PrefDialog.CustomListView1.Clear 'required to force the layout to be recreated
No, of course not.There is no relation between B4XTable and B4XPreferenceDialog