Is it possible to have a Button
object in a column in an AdvancedDataGrid
object in flex 4? And how would I do this?
You can do it in flex 3, so it should be possible in flex 4 too. Here is how to do it in flex 3, modify it for spark.
script:
public function create():void
{
var array:Array = [{text:"Text1", buttonLabel:"Bt1"},
{text:"Text2", buttonLabel:"Bt2"}]
ad.dataProvider = new ArrayCollection(array);
}
public function onClick(item:Object):void
{
trace(item.text);
}