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

[qooxdoo-devel] Adding eventHandlers to a listview item

2008-08-15 Thread stirling
Hi, I have a problem with listviews in qooxdoo: I want to add eventHandlers to an item(acutally to all items) of a listview. I've already searched the web on this topic but I didn't get any solution. So can you help me? I habe the following script: --- script beginnin