B4J Tutorial [ABMaterial] New component ABMPivotTable in 1.08

ABMPivotTable allows the user to view data in a dynamic pivot table. It can answer quick questions that are e.g. not findable in a report. Note that it can only handle a couple of thousand records. You have to provide it with a csv file, so you may have to filter the records on the server side before sending it over to the browser.

I have tried to materialize it as much as possible, but as for now, I have not found a solution for the dropdown combos.

A video demonstrating the new control:


The code to add this into a WebApp:

B4X:
Dim pivot As ABMPivotTable
pivot.Initialize(page, "pivot", 500, "../pivots/Pivot.csv", "Persoon code,Persoon naam", "Project code,Project naam", "Decimaal,Prijs", "")
       
page.CellR(1,1).AddComponent(pivot)
 

billyrudi

Active Member
Licensed User
Longtime User
Hi i have a blank screen in demo... see picture
can you help me?
 

Attachments

  • Senza titolo.jpg
    Senza titolo.jpg
    303.9 KB · Views: 288

alienhunter

Active Member
Licensed User
Longtime User
Hi
Same thing here blank screen in demo , i tried all kinds of browsers , copied all demo assets
ABMPDFViewer works with the demo asset files
anything that we can do ?
 

imbault

Well-Known Member
Licensed User
Longtime User
Hi Alain,

In v1.12, ABMPivotTable show always this white screeb, any suggestion?

Many thanks regarding your fw

Patrick
 
Top