B4J Question Tableview disable header moving

imbault

Well-Known Member
Licensed User
Longtime User
Hi,

Is it possible to prevent a tableview for headers moving ?

Thanks a lot
 

stevel05

Expert
Licensed User
Longtime User
Sorry I don't understand the question, please explain a bit more.
 
Upvote 0

tufanv

Expert
Licensed User
Longtime User
Hi,

Is it possible to prevent a tableview for headers moving ?

Thanks a lot
if you mean sorting columns with clicking on the header you can disable it with :

B4X:
    For i=0 To TableView1.ColumnsCount-1
        TableView1.SetColumnSortable(i,False)
    Next
 
Upvote 0
Top