Hello - is there a way to add the B4XTable manually? I tried
but got error "java.lang.IllegalArgumentException: method anywheresoftware.b4a.objects.PanelWrapper.AddView argument 1 has type android.view.View, got b4a.example.b4xtable". So I tried
but got error "java.lang.RuntimeException: Object should first be initialized (B4XView)", but couldn't find a way to initialize "mBase", such as "mBase.Initialize". So, I'm stumped. Any ideas?
Code:
pnl.AddView(tblVehicleStats, 5%x, spacing, 90%x, 500)
but got error "java.lang.IllegalArgumentException: method anywheresoftware.b4a.objects.PanelWrapper.AddView argument 1 has type android.view.View, got b4a.example.b4xtable". So I tried
Code:
pnl.AddView(tblVehicleStats.mBase, 5%x, spacing, 90%x, 500)
but got error "java.lang.RuntimeException: Object should first be initialized (B4XView)", but couldn't find a way to initialize "mBase", such as "mBase.Initialize". So, I'm stumped. Any ideas?