[visualization-api] google-chart table: how to store a link or do cell selection?

2017-08-11 Thread 'Roberto Attias' via Google Visualization API
I need to open a new tab with some URL when the user clicks on a cell in a google char table. I was trying to do this by reacting to the cell selection: google.visualization.events.addListener(table, 'select', tableSelectHandler); function tableSelectHandler() { const r = table.getSelection();

[visualization-api] Re: google-chart table: how to store a link or do cell selection?

2017-08-11 Thread 'Roberto Attias' via Google Visualization API
Note: I'd like the solution not to involve jquery if possible... On Friday, August 11, 2017 at 9:32:54 AM UTC-7, Roberto Attias wrote: > > I need to open a new tab with some URL when the user clicks on a cell in a > google char table. I was trying to do this by reacting to the cell > selection: