Android Question Table Class - Click in empty table

h725

Active Member
Licensed User
Longtime User
I am using the cellclick event for a popup menu so that I can modify the row (remove it, add something after the row etc.)
The place on the screen is limited so that the cellclick was quite nice, I did not need a button options for showing the popup menu.

I would like to open the popup menu.
Maybe one can modify the headerclick. The sorting algorithm is actually not necessary for me.
 
Last edited:
Upvote 0

klaus

Expert
Licensed User
Longtime User
Maybe one can modify the headerclick.
No need to modify the Class module, you have already the possibility to do this:
Set Table1.SortColumn = False

And add a sub like this in your code:
B4X:
Sub Table1_HeaderClick (Col As Int)
   ' your code
End Sub
 
Upvote 0
Cookies are required to use this site. You must accept them to continue using the site. Learn more…