Re: [qooxdoo-devel] Adding eventHandlers to a listview item

2008-08-18 Thread Alexander Back
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

Re: [qooxdoo-devel] Adding eventHandlers to a listview item

2008-08-15 Thread Dioc
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