B4J Question [abmaterail] ABMTable_Clicked(PassedRowsAndColumns As List) is still fired twice

liulifeng77

Active Member
Licensed User
Longtime User
update to 4.3, it is seemed not be fixed!
 

Attachments

  • 1.PNG
    1.PNG
    6.9 KB · Views: 270

liulifeng77

Active Member
Licensed User
Longtime User
#655 [FIX] ABMTable_Clicked(PassedRowsAndColumns As List) is fired twice from mobile devices
--------------------------------------------------------------------------------------------
The table click event is fired twice when accessed from Mobile devices. It is fine from Laptop

my app test code:
B4X:
Sub tbl_clicked(PassedRowsAndColumns As List)
Log("ttt")
page.Cell(3,1).Visibility=ABM.VISIBILITY_HIDE_ALL
page.Cell(3,1).Refresh
    count=count+1
    Dim tblCellInfo As ABMTableCell = PassedRowsAndColumns.Get(0)
.........
end  sub

log('ttt") execute twice.
 
Upvote 0
Top