Hello everybody.
In B4A, which component should I use to create a list with columns? For example, I am entering a sale, and when inserting the products, I add them to a list, but separated by columns.
code - description - quantity - value - total
0001 item1 10 10.00 100.00
0002 item2 5 10.00 50.00
.....
And if it is necessary to change any item, I need to inform which column each field is in.
B4XTable is a paged based table. The UI is made of a horizontal xCLV. The data is stored in an in-memory SQLite database. How to use? 1. Add a B4XTable with the designer. 2. Add the columns: B4XTable1.AddColumn("US County", B4XTable1.COLUMN_TYPE_NUMBERS) B4XTable1.AddColumn("Name"...
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 folder. The two asset files (list of animals - source; and the...
Hi, my name is Lucas Siqueira ?? ! I am very happy ? to share with you the designer at B4XPAGES. This code queries currency quotes using the free https://exchangerate.host/ api. I also implemented a designer with progress while the app makes the http request to get the data via json and...