You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the documentation https://wave.h2o.ai/docs/examples/table-events-select
it is shown that using the ui.table property
events=['select']
will enable an event handler so that when clicking on a table the row-name under the cursor is given as
q.args['<table_name>']
on the called table-handler.
But we need also the column name of the cell which was selected.
So, in our application we have a grid of numbers and need to know the cell which was selected.
How can I get this information, so the column name of the cell?