B4A Tutorial [B4X] B4XTable - Load data from SQL database - Erel    Feb 10, 2019   (34 reactions) We need to convert them to empty strings:
If row(2) = Null Then row(2) = ""
row(3) = rs.GetString("Address")
Data.Add(row)
Loop
rs.Close
B4XTable1.SetData(Data)
Step #1: add the columns.
Step #2: fill the Data list with the data coming from the SQL db.
Step #3: call B4 B4A Tutorial [B4X] B4XTable - Multiple rows selection - Erel    May 25, 2020   (9 reactions) Step #3: Whenever the data is updated, we need to go over the visible rows and update their visual state: Sub B4XTable1_DataUpdated For i = 0 To B4XTable1.VisibleRowIds.Size - 1 Dim RowId As Long = B4XTable1.VisibleRowIds.Get(i) SetRowColor(i, SelectedRows.Contains(RowId)) Next B4A Tutorial [B4X] B4XTable - Adding custom navigation buttons - Erel    Apr 08, 2019   (11 reactions) Depends on B4XTable v1.01+
https://www.b4x.com/basic4android/images/SS-2019-02-06_15.24.42.png
It is very simple to add your own navigation features.
Code:
Sub btnNext_Click
B4XTable1.CurrentPage = B4XTable1.CurrentPage + 1
End Sub
Sub btnPrev_Click
B4XTable1.CurrentPage = B4XTable1.Curre B4A Tutorial [B4X] B4XTable with custom cells layout - Erel    Feb 06, 2019   (17 reactions) 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-table.102322/#content
This example demonstrates the steps required to create cells with custom layout B4A Tutorial B4A Change Log (versions history) - Erel    Aug 26, 2024   (12 reactions) This version brings an updated Android, Google, AndroidX and Firebase SDKs.
Follow these instructions to update the various components: https://www.b4x.com/b4a.html
Updated libraries: B4XTable v1.23, B4XPages template, FirebaseAdmob2 v3.0, FirebaseAnalytics v3.0, FirebaseAuth v3.0, FirebaseStorage v B4A Tutorial [B4X] B4XTable - Editable table and export to CSV - Erel    Apr 11, 2019   (15 reactions) https://www.b4x.com/basic4android/images/SS-2019-02-18_16.52.26.png
This example shows how to modify the table data. When the user clicks on a cell we show an input dialog and let the user modify its content.
The data in B4XTable is stored in an in-memory database. The table name is 'data' and the B4A Tutorial [B4X] Cross platform Editable B4XTable + Form Example - Erel    Jan 02, 2020   (30 reactions) https://www.b4x.com/basic4android/images/SS-2019-04-11_15.50.04.png
This example demonstrates several things:
Cross platform code and files, similar to the way XUI2D games are organized:
All the logic is implemented in a class named EditableTable. The module is located in the projects parent fold B4J Tutorial B4XTable - B4XLocalizator - Mariano Ismael Castro    Jan 08, 2024   (13 reactions) Hola, si has utilizado ] Localizator - Localiza tus aplicaciones B4X, sabes que tienes que usar Excel para añadir las claves y luego traducir cada una de ellas al idioma de destino. Con esta herramienta agregas las claves directamente al B4XTable y luego puedes hacer clic en las celdas para hacer la B4i Tutorial B4i Change Log (versions history) - Erel    Dec 04, 2024   (1 reaction) Project templates: https://www.b4x./#content Comment links: https://www.b4x.com/android/forum/threads/b4x-comment-links.119897/ Add New Module - Option to add the module in the parent folder. Useful for cross platform projects. Fix for a bug related to multiple instances of the same class and resuma B4J Tutorial B4xTable: Property Bag Use Case - Mashiane    Oct 01, 2023   (1 reaction) Hi I am attempting to use a B4xTable as a property bag. I found B4xTable Inline Editing fit for this as i can set and get any component. You can use that as reference. The magic is keeping which components use what e.g. e.g B4XPlusMinus1 will have a secondary map of Numbers. A TextArea will have a Page: 1   2   3   4   5   6   7   Powered by ColBERT |