i try to build a drawer with different buttons to access different pages (Employees, Customers)
Each page should view a different table in jobs.db
When i press the button of Employees, the Employeepage will open, but the content of customers will shown.
i try to find the bug, but didnt see why i cant see the "employee data".
Can anybody give me a hint why i cant see the employeetable?
Sub Class_Globals
Private Root As B4XView 'ignore
Private xui As XUI 'ignore
Public Edit As PageEdit
Public Filter As PageFilter
Public Customer As B4XCustomerPage
Public Employee As B4XCustomerPage
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...
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 class helps with adding inline editing features to B4XTable. Usage instructions: 1. Initialize an InlineEditing object, named 'ie' in the example. 2. Delegate the following events: Private Sub MainForm_Resize (Width As Double, Height As Double) ie.TableResized End Sub Sub...
www.b4x.com
Note:
I like how you use the names of functions and variables.
Inline editing looks cool, but it lacks the option to add an entry. So i have to build an "addpage" anyway.
Is it possible to add a new line in the table by simply going down to the last entry and press "down"?
With that possibility, i can delete the "addpages" ..