iOS Question Table Class - row_click - selectedindex - raise event

h725

Active Member
Licensed User
Longtime User
Hello Everybody !

I am working with the table class.
I would like to do something like that:
If I click on a row an event should raise which I can
handle. If the event is raised I also have to access
the value of one cell in the selected row.

Why I am asking:
In B4A I can generate a log entry in the table_cell_click event:

B4X:
Sub table1_Cell_Click
    Log("cell_click")
End Sub

That is working fine. In B4I, this sub does not generate a log entry.
If I want to do something more e.g. show a messagebox or load another
layout nothing happens,
in B4A and in B4I.

In VB you can easily handle this with the selectedindex_changed
event if you use a listview. Is there anything similar to this ?

Thank you very much in advance.

Regards
h725
 
Last edited:
Top