Hi Stirling,
an even better approach is to use the "changeSelection" event of the
SelectionManager of the listview widget.
--snip--
chart.getPane().getManager().addEventListener("changeSelection",
function(e){
var selectedItems = e.getData();
}, chart);
--snip--
And as Dioc already men
Hello stirling,
qx.ui.listview.ListView is deprecated and qx.ui.table.Table should be used
instead.
Try the following code. I hope it helps you to achieve the desired
behaviour.
// Create Header
var ranksHead = {
filename: { label : "Name", width : 400, type : "text", sortable :
true, so