S Scantech Well-Known Member Licensed User Longtime User May 28, 2019 #1 I have been trying to figure out how to hide a B4XTable column without any success. Does anyone know how?
I have been trying to figure out how to hide a B4XTable column without any success. Does anyone know how?
jimmyF Active Member Licensed User Longtime User May 28, 2019 #2 B4X: Class_Globals Dim timeColumn As B4XTableColumn Sub Initialize timeColumn = B4XTable1.AddColumn("Time", B4XTable1.COLUMN_TYPE_TEXT) B4XTable1.VisibleColumns.RemoveAt(B4XTable1.VisibleColumns.IndexOf(timeColumn)) Upvote 0
B4X: Class_Globals Dim timeColumn As B4XTableColumn Sub Initialize timeColumn = B4XTable1.AddColumn("Time", B4XTable1.COLUMN_TYPE_TEXT) B4XTable1.VisibleColumns.RemoveAt(B4XTable1.VisibleColumns.IndexOf(timeColumn))
mangojack Expert Licensed User Longtime User May 29, 2019 #3 Scantech said: I have been trying to figure out how to hide a B4XTable column without any success. Does anyone know how? Click to expand... 3rd result of a search for B4XTable hide column. https://www.b4x.com/android/forum/pages/results/?query=B4XTable+hide+column Upvote 0
Scantech said: I have been trying to figure out how to hide a B4XTable column without any success. Does anyone know how? Click to expand... 3rd result of a search for B4XTable hide column. https://www.b4x.com/android/forum/pages/results/?query=B4XTable+hide+column
jimmyF Active Member Licensed User Longtime User May 29, 2019 #4 3rd result of a search for B4XTable hide column. Click to expand... I know. I happened to be working on an app in which I used that feature. Would've taken me longer to search for the link lol. also: B4X: timeColumn.Width = 1dip B4XTable1.Refresh Upvote 0
3rd result of a search for B4XTable hide column. Click to expand... I know. I happened to be working on an app in which I used that feature. Would've taken me longer to search for the link lol. also: B4X: timeColumn.Width = 1dip B4XTable1.Refresh