B4A Tutorial [B4X] Cross platform Editable B4XTable + Form Example - Erel    Jan 2, 2020   (30 reactions)   tags: xuiTable .
Using B4XTable and B4XPreferencesDialog to create an editable table. Table features:
Add new items.../b4xtable-with-inline-editing.112686/#post-702660... B4A Tutorial [B4X] B4XTable - Load data from SQL database - Erel    Feb 10, 2019   (34 reactions)   tags: b4xtable B4XTable.SetData expects a List where each entry in the list is an array of objects with the data... the Data list with the data coming from the SQL db.
Step #3: call B4XTable.SetData.
B4A project... B4A Tutorial [B4X] B4XTable with custom cells layout - Erel    Feb 6, 2019   (17 reactions)   tags: B4X, B4X B4XTable Custom Cell https://www.b4x.com/basic4android/images/SS-2019-02-06_11.52.16.png
Requires B4XTable v1.01+: https://www.b4x.com/android/forum/threads/b4x-b4xtable-cross-platform-sortable-searchable-customizable... B4A Tutorial [B4X] B4XTable - Multiple rows selection - Erel    May 25, 2020   (10 reactions)   tags: xuiTable Edit: Don't use this code. Use B4XTableSelections class instead: https://www.b4x.com/android/forum/threads/b4x-b4xtableselections-extended-selection-modes-for-b4xtable.114294/ This example depends on B4XTable v1.02+ and B4XCollections. https://www.b4x.com/basic4android/images/SS-2019-02-06_15... the CellClicked event: Sub B4XTable1_CellClicked (ColumnId As String, RowId As Long) Dim Selected As Boolean... = B4XTable1.VisibleRowIds.IndexOf(RowId) 'Find the index of the visible row SetRowColor(Index, Selected... B4A Tutorial B4XTable - Photos Album - Erel    Jan 11, 2021   (18 reactions)   tags: b4xtable photo https://www.b4x.com/basic4android/images/SS-2019-03-03_13.10.22.jpg
In this example the table....
4. Load the images when the table is updated.
5. Show a dialog with a large image when an image... B4A Code Snippet [B4X] B4XTable - Delete Row - Erel    Mar 11, 2019   (13 reactions)   tags: delete b4xtable row, B4X B4XTable - Delete Row Deletes a row from the table.
Sub DeleteRow (tbl As B4XTable, RowId As Long)
tbl.sql1... = page
End Sub
Usage example:
Sub B4XTable1_CellClicked (ColumnId As String, RowId As Long... = xui.DialogResponse_Positive Then
DeleteRow(B4XTable1, RowId)
End If
End Sub
... B4J Tutorial [B4X] B4XTable sample working with SQLite - aeric    Sep 20, 2025   (9 reactions) B4XTable Sample 1
A sample project to demonstrate loading SQLite data into B4XTable
Android...-B4X
B4XTable Sample 2
Another sample project to demonstrate loading SQLite data into B4XTable
Sample Customers... B4A Tutorial [B4X] B4XTable - Editable table and export to CSV - Erel    Apr 11, 2019   (15 reactions)   tags: xuiTable, B4X B4XTable Editable tbl its content.
The data in B4XTable is stored in an in-memory database. The table name is 'data... editable table: https://www.b4x.com/android/forum/threads/b4x-cross-platform-editable-b4xtable-form... B4J Code Snippet B4XTable - keyboard navigation - Erel    Nov 1, 2021   (15 reactions) Example of using a keyboard event filter to add keyboard navigation to B4XTable. It uses B4XTableSelections in permanent single cell mode.
https://www.b4x.com/basic4android/images/eoTCpkHqvO.gif... B4A Code Snippet [B4X] B4XTable - Resize columns based on content - Erel    Apr 1, 2020   (8 reactions)   tags: xuiTable, b4xtable B4XTable1_DataUpdated
Dim ShouldRefresh As Boolean
'NameColumn and NumberColumn are global B4XTableColumns that we want to measure
For Each column As B4XTableColumn In Array(NameColumn, NumberColumn... Page: 1   2   3   4   5   |