Hy,
I have 4 combo-boxes and each one has a RefreshableValueHolder.
If I change the value in one of them, I would like to automatically change contents of the others. I know I have to use the refresh() method of this class, but I cannot figure it out how.
for example I declared the holder like this:
new RefreshableValueHolder(new Closure() {
public Object call( Object o )
{
return getElementsForCombo();
}
}, true, true)
Please help me with an example!
Thanks in advance,
Ender