Android Question How to know when a B4XTable navigation view has been pressed

toby

Well-Known Member
Licensed User
Longtime User
The navigation views: |< < x > >| , where x is the current page number
How do I know whether a user clicks any of the 4 views which causes x to be changed?

I need to clear a checkbox which is used to select/deselect all visible rows on the current page as soon as page is changed.

Could someone show me how, please?

TIA
 

toby

Well-Known Member
Licensed User
Longtime User
My solution:
Solution:
Sub B4XTable1_DataUpdated
    chkSelectAll.Checked=False
    XSelections.Refresh
End Sub
 
Upvote 0
Top