[ Datatable ] How to trigger on each cell click multiple times

Good day,

Just a quick question.

Can’t figure out how to trigger an ‘onAfterSelect’ event each time the cell is being clicked. Right now it triggers only one time and to trigger it again i have to select second cell in the second row and click the previous cell again. Or maybe it is better to use another event to trigger a click on a cell ?

Here is the snippet if needed : Code Snippet

https://docs.webix.com/api__link__ui.datatable_onitemclick_event.html

                    on: {
                          onItemClick: function (id)
                          {
                              if (id.column == "image") {
                                    webix.alert("Bingo");
                                  }
                          }
                       }

Oh man , i have totaly forgot about onItemClick. Thank you integal !!!