I have to load a Radio in a RadioGroup with RPC. So i initialize my component, calling RPC. The procedure's success iterate on a list of string. Each of them is used to generate Radio which is added to the radioGroup.
for (int i = 0; i < values.length; i++) {
val = values[i];
final Radio button = new Radio();
button.setFieldLabel(val);
radioGroup.add(button);
}
But nothing is display . Have you an idea ? is it possible to load radio on a RadioGroup thanks RPC ?