Android Question B4XTable Just a Field Editable

mangojack

Well-Known Member
Licensed User
Longtime User
If I understand correctly .. you wish to allow user to edit specific field / column ?

Using the above example ... maybe something like this.

B4X:
Sub B4XTable1_CellClicked (ColumnId As String, RowId As Long)

    If ColumnId = "Name" Or ColumnId = "State" Then  '...  Allow Edit
        Dim column As B4XTableColumn = B4XTable1.GetColumn(ColumnId)
        'more code ...
 
Upvote 0

Daniel44

Active Member
Licensed User
Yes you're right just a column. Thank you for answering. I' ve been searching for this but I couldn't find anything about this.
 
Upvote 0
Top