por cierto se me olvidaba asi es como creo el datagrid
Código:
stockResultObj.onResult = function(result) {
for (var i=0; i<result.length; i++)
{
// example result values. The result is a decoded actionscript object
//version of the xml returned by the operation.
my_dg.rowHeight = 25;
my_dg.addItem({Marca:result[i].marca, Sustancia_Activa:result[i].activo, Presentacion:result[i].presentacion, Mg:result[i].mg, Precio:result[i].precio, Cantidad:1, Importe:"0"});
my_dg.getColumnAt(5).cellRenderer = "Symbol 1";
my_dg.getColumnAt(6).cellRenderer = "Symbol 2";
}
donde Symbol 1 y Symbol 2 son los clips vacios que me enlazan a las clases
gracias