I have extended list (with checkbox and label in each line). The list was
defined in such way

var list = new qx.ui.form.List();        
locationKeywordsTab.add(list);
var rawData = [{"name":"Keyword 1", "selected":true}, {"name":"Keyword 2",
"selected": false}];
var arrayWrapper = qx.data.marshal.Json.createModel(rawData); 
// create the controller for list
var listController = new qx.data.controller.List(arrayWrapper, list,
"name");

I want to show alert text such as "Keyword 1 is selected, Keyword 2 is not
selected" after user change checkbox state. How can I do it?

-- 
View this message in context: 
http://n2.nabble.com/List-with-checkboxes-handle-events-tp4911878p4911878.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to