Android Question Formatting B4Xtable

Peekay

Active Member
Licensed User
Longtime User
1. I fetched two rows of data from SQL Server for the B4Xtable, but it shows a lot of empty rows below the two data rows. How can I delete the empty rows?
2. On top of the table there is a search input space. How can I remove the search view of control.
3. With only two rows showing, I do not need the next/previous page buttons, or is that only because I have so many empty rows?

Thanks
PK
 

Mahares

Expert
Licensed User
Longtime User
On top of the table
Use these 2 lines after you define your columns to hide the upper panel that contains the searcj and numbering. This should take care of items 2 and 3 in your request.. There is something regarding question1, but I can't locate it. You can search for: RemoveRowsWithRowIDzero and see if you find it
B4X:
Sleep(0)
B4XTable1.pnlHeader.Visible = False
 
Upvote 1
Top