B4A Library [B4X] lmB4XTableExt - LucaMs    Apr 13, 2024   (26 reactions) - Hide/unhide columns. - Export to Excel, including cell type (numbers, texts, dates). - Export to CSV text format. All the Views contained in the library have been declared Public, so that the programmer can easily customize (especially for localization, text translation). The use is very easy. B4J Question B4XTable - Hide columns. - William Lancee (first post)    Dec 25, 2021 OK got it.
Private Sub Button1_Click
' Resets visible columns.
Dim toggle As Boolean = B4XTable1.VisibleColumns.Size = 10
B4XTable1.VisibleColumns.Clear
For Each clm As B4XTableColumn In B4XTable1.Columns
B4XTable1.VisibleColumns.Add(clm)
clm.Panel.visible = True
B4A Question B4XTable, hide one or more columns - toby (first post)    Jan 28, 2022   (2 reactions) You can also hide a column the following way:
Dim clmHidden As B4XTableColumn
clmHidden=tblOrders.AddColumn("hidden column", tblOrders.COLUMN_TYPE_NUMBERS)
tblOrders.VisibleColumns.RemoveAt(tblOrders.VisibleColumns.IndexOf(clmHidden)) 'hidden column B4A Question Hide B4XTable column - DonManfred (first post)    Sep 10, 2024   (2 reactions) https://www.b4x.com/android/forum/threads/how-do-i-hide-a-column-in-b4xtable.122110/post-763297 B4A Question b4xtable hide column - mangojack (first post)    May 09, 2019   (4 reactions) Study the B4XTable Example ... https://www.b4x.com/android/forum/threads/b4x-b4xtable-cross-platform-sortable-searchable-customizable-table.102322/#content
'remove the number columns
B4XTable1.VisibleColumns.RemoveAt(B4XTable1.VisibleColumns.IndexOf(NumberColumn)) B4A Question B4xTable hiding Column - jimmyF (first post)    May 28, 2019   (2 reactions) Class_Globals
Dim timeColumn As B4XTableColumn
Sub Initialize
timeColumn = B4XTable1.AddColumn("Time", B4XTable1.COLUMN_TYPE_TEXT)
B4XTable1.VisibleColumns.RemoveAt(B4XTable1.VisibleColumns.IndexOf(timeColumn)) B4A Library [B4X] B4XTable - Cross platform, sortable, searchable, customizable table - Erel    Feb 08, 2024   (58 reactions) Allows disabling the search highlighting feature. V1.20 - Many changes under the hood. New RefreshNow method that refreshes the table synchronously. SetData returns a ResumableSub object and can be used with Wait For to (asynchronously) wait for the data to be ready. New SearchVisible field and desi B4A Question [SOLVED] B4XTable Dynamically Show/Hide Column - Erel (first post)    Jan 31, 2020   (3 reactions) This use case will require some additional steps:
Private Sub HideColumn(ColID As String)
Dim poCol As B4XTableColumn = B4XTable1.GetColumn(ColID)
If poCol <> Null And poCol.IsInitialized Then
Dim piVisibleColIndex As Int = B4XTable1.VisibleColumns.IndexOf(poCol)
If piVisibl B4A Question B4XTable-Setup Table with Fewer Columns Using QueryBuilder Without Redefining Columns - Mahares (first post)    Apr 02, 2023   (1 reaction) We are not talikng about hiding columns. I reuse the same B4XTable layout by removing the views and populating the table with a different set of columns. Instead of using something like this in the code:
Root.RemoveAllViews
Root.LoadLayout("2") 'Has B4XTable1
B4XTable1.AddColumn("NAME", B4X B4A Question ID Column In a Table - mangojack (first post)    Oct 21, 2021   (1 reaction) A simple solution would be to include a column in the B4XTable to store the Database ID. Then just hide that column ... when a user clicks that row ,you will still be able to query that column to get the db ID. Search Results B4XTable Hide Column Page: 1   2   3   4   5   6   7   Powered by ColBERT |