Bueno tengo esta linea de AS
Código :
Estado: pelis_Grid.getColumnAt(5).cellRenderer = "RatingRadioRenderer";
Esta linea forma parte de la construccion de filas para un datagrid
Código :
function datosgrid() {
//Cargamos el XML
miXML.ignoreWhite = true;
miXML.onLoad = function(success){
//Cargamos y llenamos el array
if (success){
for (i=0; i<miXML.firstChild.firstChild.childNodes.length; i++){
pelisGrid.addItem
({ID_Epo:miXML.firstChild.firstChild.childNodes[i].childNodes[0].firstChild, Equipo:miXML.firstChild.firstChild.childNodes[i].childNodes[1].firstChild,
Marca:miXML.firstChild.firstChild.childNodes[i].childNodes[2].firstChild,
Modelo:miXML.firstChild.firstChild.childNodes[i].childNodes[3].firstChild,
Serie:miXML.firstChild.firstChild.childNodes[i].childNodes[4].firstChild,
Estado:pelis_Grid.getColumnAt(5).cellRenderer="RatingRadioRenderer"}); }
}
El asunto es que cuando ejecuto el fla en la columna 5 no me pone los radiobutons, sino que me pone la palabra RatingRadioRenderer. ya he probado la clase con el ejemplo cellrenderer de elecash y me pone muy bien los radiobutons.
Aqui pongo el link de donde baje la clase
http://philflash.inway.fr/dgratingrd/dgratingrd.html
Alguien puede decirme porque me pone unicamente la palabra RatingRadioRenderer y no el conjunto de radiobutons que quiero.

