>I need clear a combobox list but I try with no success ....
Assuming ComboBox is the variable name of the ComboBox you need to clean up:
Quick & Dirty Way (if you don't care about memory usage):
ComboBox.getList().removeAll();
Slow & Clean Way:
var childLength = ComboBox.getList().getChildrenLength();
for (var i = 0; i < childLength; i ++)
{
var childToRemove = ComboBox.getList().getFirstChild();
ComboBox.getList().remove(childToRemove);
childToRemove.dispose();
childToRemove = null;
}
>and how I retrieve (for RPC or POST) multiple result to input in a grid
?!?!
Can you be more specific? I'm not understanding...
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel