B4J Question Cross platform Editable B4XTable (with data from sql query

afields

Member
Licensed User
hello to all. [ S O L V E D ]
i'm using that very good tool not with data from a csv file but from a sql query.
what i think that i must do:
if i want to use those buttons ( like those Erel had used edit; copy; delete) in the first column of the b4xtable then my sql must have an extra field in that place like in
original sql :
B4X:
select abr_discip, tem,n_seq from tur_discip where concat(ano,turma)=?
and sql for use in b4x editable table :
B4X:
select "  " as empti, abr_discip, tem,n_seq from tur_discip where concat(ano,turma)=?
.
now it works as expected.
but when i click edit's button in a table's line and the form open ( created first with formbuilder) i've got no data in the fields of the form like if it was a new insert and not an edit!
Thank you
 
Last edited:
Top