B4A Library [B4X] B4XTable - Cross platform, sortable, searchable, customizable table - Erel    Sep 21, 2025   (59 reactions)   tags: xuiTable, b4xtable, DataGrid, Table, B4X B4XTable B4XTable is a paged based table. The UI is made of a horizontal xCLV. The data is stored in an in...(data) 'this is an asynchronous method. If you want to access the table immediately after SetData... of the table colors are set in the designer properties. The arrows colors are set with ArrowsEnabledColor... B4J Library [B4X] [XUI] SD FlexGrid (Table) - Star-Dust    Oct 25, 2023   (70 reactions)   tags: grid table flexi, b4x I created a new library to show a table (or grid) similar to the one in EXCEL... with the FlexibleTable by @klaus (B4A). I wanted to make something slightly different suited to my... B4A Tutorial [B4X] B4XTable - Editable table and export to CSV - Erel    Apr 11, 2019   (15 reactions)   tags: xuiTable, B4X B4XTable Editable tbl 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 column names are available with B4XTableColumn.SQLID. The code to update a cell... editable table: https://www.b4x.com/android/forum/threads/b4x-cross-platform-editable-b4xtable-form... B4A Code Snippet [B4X] [B4XTable] Clear data only (keeping the table structure) - LucaMs    Feb 8, 2024   (4 reactions) /b4xtable-clearing-data.142729/post-904607)
Sub ClearB4XTable(xTable As B4XTable)
Dim lstData As List
lstData.Initialize
xTable.SetData(lstData)
End Sub
Note to Erel: this is not... B4A Question Mashy Teaches WebApp/Website Development with BANanoVuetifyAD3 - The New Series - Mashiane    Oct 1, 2022   (25 reactions) files) 15. Introducing the V-Data-Table (VueTable) 16. BANanoVuetifyAD3 Rewind - BindState Source Code.... Mashy Teaches BANanoVuetifyAD3 : Creating a Data Table Invoice Listing using MySQL PHP 19... of creating Single Page Applications (SPAs) ... Export VueTable to PDF and Excel (with one liners) Changing the WebApp Global Font Handling UI Breakages on Page Refresh Data-Table: Import CSV, Run Timers, Inline Editing & RealTime Updates, Export to Excel & PDF V-Data-Table Exports Explained... B4A Question B4J pmtablecreation: how to create a table using the pmtableclass and use it in a B4X dialog - PaulMeuris    Oct 1, 2025   (3 reactions) This demo application shows you how you can create a custom table using a new version of the pmtableclass. By setting up a few lists you can define the structure of the table: fields list, field types list, primary key list, input views list and (empty) data list. The basic functionalities of the tableclass are the same in this version: horizontal and vertical scrolling, adjust the column width... the countries list. That list is then used in a combobox in another table. This tableclass version... B4A Question B4J pmtablebrowser: a tool to display database table content using the pmtableclass and the DB field selector tool - PaulMeuris    Sep 23, 2025   (6 reactions) With this tool you can browse through the content of your SQLite and MySQL database tables.
167180
You can find more information via this link: pmtablebrowser... B4A Question B4J pmtableclass: a class to display a SQLite database table content in a grid - PaulMeuris    Sep 19, 2025   (5 reactions) 167021 Here's another approach to displaying and modifying SQLite database table information in a scrolling grid. You can find more information on this via this link: B4X tutorials: B4J pmtableclass EDIT: added some technical details and provided a newer version of the demo application.... B4i Question [B4X] DBUtils2 - CreateTable not standardized - Alexander Stolte    Jul 17, 2020 Hey, on B4A we need a map of the fields and types and on B4I we need 2 lists? DBUtils.CreateTable(main_sql,"mytable",CreateMap("id":DBUtils.DB_INTEGER),"id") That makes double work.... B4J Library [B4X] DBUtils 2 - Erel    Dec 16, 2021   (38 reactions)   tags: DBUtils, 2, sqllite, myapp, db, B4X DBUtils 2 (by Luca): New GetFieldsInfo and GetTables methods. V2.06 - Fixes an issue with TableExists in B4A. V2.05 - New TableExists method to check whether a table exists (the table name is case insensitive).... Page: 1   2   3   |