1)
{
colorChoices.visible=true;
colorLabel.visible=false;
}
//hide the comboBox and show the label
else
{
colorChoices.visible=false;
colorLabel.visible=true;
}
colorChoices.selectedItem=data.selectedColor;
}
}
public function changeHandler(event:Event): void
{
data.selectedColor=String(colorChoices.selectedItem);
IList(DataGrid(owner).dataProvider).itemUpdated(colorChoices.selectedItem);
}
]]>