
Код AS3:
...........
var col = myDataGrid.getColumnAt(0);
col.cellRenderer = MultiLineCell;
...........
класс MultiLineCell

Код AS3:
package {
import fl.controls.listClasses.CellRenderer;
public class MultiLineCell extends CellRenderer
{
public function MultiLineCell()
{
textField.wordWrap = true;
textField.autoSize = "left";
}
override protected function drawLayout():void {
textField.width = this.width;
super.drawLayout();
}
}
}