Oh, you want to implement a select event in your chart/table, not the control. Here's example code you can plug into the
playground code for the StringFilter control:
google.visualization.events.addListener(table, 'select', function () {
var sel = table.getChart().getSelection();
var tmpData = table.getDataTable();
var msgArray = ['You have selected:'];
for (var i = 0; i < sel.length; i++) {
msgArray.push(tmpData.getValue(sel[i].row, 0));
}
alert(msgArray.join('\n'));
});
Put that in the code after you create the table and before you create the dashboard.