B4A Library [B4X] B4XTable - Cross platform, sortable, searchable, customizable table - Erel    Sep 21, 2025   (58 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... that refreshes the table synchronously. SetData returns a ResumableSub object and can be used... the table is cleared. V1.16 - Fixes an issue with frozen columns when the table is reused with new... B4A Library [Class] Flexible Table - klaus    May 22, 2025   (51 reactions)   tags: B4A UI, Klaus, Tree, table view sort, Table View, tabla This thread will be used by Erel, Melamoud and myself to discuss / post new releases of the Table class. The table class is a flexible UI component that enable scrollable table like UI, with sortable columns, multiselect rows etc the table is very efficient, maintaining labels only for visible.../19254-class-tableview-supports-tables-any-size.html#post110901 The class depend on following...) - ScrollView2D (additional) List of major features. 1. scrollable table UI 2. sortable columns 3... 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. There are already excellent classes that allow many to accomplish things, such as xCustomListView by @Erel (B4X) and with the FlexibleTable by @klaus (B4A). I wanted to make something slightly different suited to my needs. WARNING The use of libraries for personal and / or commercial use is permitted. It is not allowed to modify the sources or change the name of the library. Reverse engineering is not... B4J Question [BANanoVueMaterial] How to create dynamic data-table from database schema & data [SOLVED] - micro    Aug 25, 2020   (1 reaction) Hi the next step .....but always with the same problem of updating the component (VMDataTable) dt1 = VMDataTable in a module gestDatiArc is show and only the indication of the number of records in the pagination is updated but it does not show the name of the columns and records I read as you recommended (mashiane) the tutorial on VUE but it is not clear to me why dt1 does not update With Log(dt1.GetData) the Array records are present Attaching the related test project, thanks.... B4J Tutorial TableView Tutorial - Erel    Jun 7, 2017   (14 reactions)   tags: B4J, TableView TableView is useful to show data in a tabular view. The data is held in a List. Each item in... to fill a table with three columns with some random data we can use this code: TableView1.SetColumns... 1000 Dim Row() As Object = Array ("a", "b", "c") TableView1.Items.Add(Row) Next TableView can also accept Nodes as items. In this case the nodes will be displayed inside the cells. By adding nodes as items you can fully customize the TableView appearance. Another... B4A Library [Class] TableView - Supports tables of any size - Erel    Sep 25, 2013   (8 reactions) An improved version of this class is available here: http://www.b4x.com/forum/additional-libraries-classes-official-updates/30649-class-flexible-table.html The Table class allows you to show tables of any sizes. The views (labels) are reused to avoid creating many views. With the help of StringUtils the table can be loaded and saved to a CSV file. It shouldn't be difficult to show SQL tables using DBUtils.ExecuteMemoryTable. http://www.b4x.com/basic4android/images/SS-2012-07-04_10.38.01... 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... B4i Tutorial TableView with custom items - Erel    Feb 26, 2015   (3 reactions) iTableView v1.20 adds support for custom items. Each TableCell includes a CustomView property... It is quite similar to CustomListView class. However TableView is more powerful. Do note that when you create custom views your TableView will be limited to about 1000 items as each cell holds its own... example adds cells based on a designer layout file: For i = 1 To 50 Dim tc As TableCell = tv... is not useful for custom items. The table cells are resized in the Page_Resize event. The TextField... Share My Creation TableView: Magical Inline Editing - Mashiane    May 3, 2022   (6 reactions)   tags: table edit, Mashy ) MainForm = Form1 MainForm.RootPane.LoadLayout("vTableEdit") 'Load the layout file. MainForm.Title = "My Contacts" PrepareDB 'setup the table fields..., StackTrace As String) As Boolean Return True End Sub 'add an empty row to the table..., these indicate the type of column, the width, etc 'setup the table fields lstRecords.SetParentForm..., I have a button to add new records to the TableView, this calls... 'add an empty row to the table... B4i Library [class] Table - Erel    Dec 30, 2014   (2 reactions) B4i implementation of TableView: http://www.b4x.com/android/forum/threads/19254/#content http://www.b4x.com/basic4android/images/SS-2014-11-06_16.45.33.png TableView can show a huge number of items as it reuses the labels. Note that in debug mode the scrolling is a bit jumpy. It scrolls perfect in Release mode.... Page: 1   2   3   4   5   6   7   |