Hi.
Is there a way to prevent the user from switching the position of tableview columns?
Normally it wouldn't be a problem, but when I try to retrieve data from textfields inside the table, I retrieve it in as an array object, and if the position is altered, then I'll get the wrong item:
Thanks in advance.
Is there a way to prevent the user from switching the position of tableview columns?
Normally it wouldn't be a problem, but when I try to retrieve data from textfields inside the table, I retrieve it in as an array object, and if the position is altered, then I'll get the wrong item:
B4X:
Dim row() as Object = MyTable.Items.Get(0)
Dim txf as TextField = row(1) 'The second column is expected to be the textfield, but it will be messed up if the user moves it.
Thanks in advance.