imbault Well-Known Member Licensed User Longtime User Mar 15, 2018 #1 Hi, Is it possible to prevent a tableview for headers moving ? Thanks a lot
stevel05 Expert Licensed User Longtime User Mar 15, 2018 #2 Sorry I don't understand the question, please explain a bit more. Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Mar 15, 2018 #3 Moved to the questions forum. Upvote 0
Informatix Expert Licensed User Longtime User Mar 15, 2018 #4 imbault said: Hi, Is it possible to prevent a tableview for headers moving ? Thanks a lot Click to expand... You can disable it with jTableViewExtended. Upvote 0
imbault said: Hi, Is it possible to prevent a tableview for headers moving ? Thanks a lot Click to expand... You can disable it with jTableViewExtended.
imbault Well-Known Member Licensed User Longtime User Mar 15, 2018 #5 Informatix said: You can disable it with jTableViewExtended. Click to expand... Thank you Fred, I use your jTableViewExtended library, but despite reading your HTML doc, I don't find the property, can you tell which one, please? Thanks Patrick Upvote 0
Informatix said: You can disable it with jTableViewExtended. Click to expand... Thank you Fred, I use your jTableViewExtended library, but despite reading your HTML doc, I don't find the property, can you tell which one, please? Thanks Patrick
tufanv Expert Licensed User Longtime User Mar 15, 2018 #6 imbault said: Hi, Is it possible to prevent a tableview for headers moving ? Thanks a lot Click to expand... 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
imbault said: Hi, Is it possible to prevent a tableview for headers moving ? Thanks a lot Click to expand... 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
Informatix Expert Licensed User Longtime User Mar 15, 2018 #7 imbault said: Thank you Fred, I use your jTableViewExtended library, but despite reading your HTML doc, I don't find the property, can you tell which one, please? Thanks Patrick Click to expand... DisableReorderingColumns Upvote 0
imbault said: Thank you Fred, I use your jTableViewExtended library, but despite reading your HTML doc, I don't find the property, can you tell which one, please? Thanks Patrick Click to expand... DisableReorderingColumns
imbault Well-Known Member Licensed User Longtime User Mar 15, 2018 #8 I have to change my glasses... Thank you Fred Last edited: Mar 15, 2018 Upvote 0