Hi all,
I've given up on DataGrid

Now I'm trying to display radio buttons in ScrollPane.
My problem now is that only the first radio button is shown. Can anyone highlight to me where I've gone wrong? Thanks in advance
createEmptyMovieClip("table", 1);
var y = 200;
for (var i=0; i<result.getLength(); i++)
{
table.attachMovie("FRadioButtonSymbol", "rd" + i, i+2);
var item = result.getItemAt(i);
var rClip = table["rd" + i];
rClip._x = 100;
rClip._y = y
rClip.setGroupName(item.StowageCode);
rClip.setLabel(item.StowageCode);
rClip._visible = true;
y = y + 20;
}
sp.setScrollContent(table);