Android Question B4XTable Labels not cleared when paging.

Ronald Berardinis

Member
Licensed User
When clicking to next page, the text is overlayed with the previous text.
How do you clear the text when next page clicked?

1660749368550.png
 

Ronald Berardinis

Member
Licensed User
i did discover that when you first open the application and then open B4Xtable grid, it opens twice.
One lays on top of the other.
But once you exit and come back into the grid, then does not open twice and all is normal.
strange behavior?
 
Upvote 0

Mahares

Expert
Licensed User
Longtime User
strange behavior?
B4XTable does not have that strange behavior. It is possible that you have the same code in Activty_Resume and Activity_Create, where your load the same layout, create the table and populate it again. Something is not kosher in your code. Hard to tell when you are not posting any code or reproducing the behavior in a project. I am guessing you are not using a B4XPages project, but you are using the default classic type of project
 
Upvote 1

Ronald Berardinis

Member
Licensed User
B4XTable does not have that strange behavior. It is possible that you have the same code in Activty_Resume and Activity_Create, where your load the same layout, create the table and populate it again. Something is not kosher in your code. Hard to tell when you are not posting any code or reproducing the behavior in a project. I am guessing you are not using a B4XPages project, but you are using the default classic type of project
There is a form that has a button on it.
That form launches a new form that contains the B4Xtable (I call it query results).
It works great after you do your first query.
It is the first time where query form pops up twice and one overlays the other.
i have multiple forms that all call the same query form.
If I go to any of the other forms and do the same, the query form works fine.
It happens only once when the application is initially opened and you do your first query.
Then all good rest of the time.
 
Upvote 0

MicroDrie

Well-Known Member
Licensed User
Longtime User
If I go to any of the other forms and do the same, the query form works fine.
If, as requested, you can't or don't want to share the problem with us in sample code, then you have no choice but to figure out the difference between those two different calls.
 
Upvote 0
Top