hola a tod@s
estoy intentando seleccionar en el calendario del datefield unos rangos que vienen dados por una base de datos. tengo un php que recoge los datos de la bd y con loadvars los cargo en flash con el siguiente codigo:
Código:
fechas = new LoadVars();
fechas.onLoad = function(exito) {
if (exito) {
this.total = parseInt(this.total);
//for (var n = 0; n<this.total+1; n++) {
rango1 = new Object();
rango1.rangeStart = new Date(this["iny1"], this["inm1"], this["ind1"]);
rango1.rangeEnd = new Date(this["outy1"], this["outm1"], this["outd1"]);
rango2 = new Object();
rango2.rangeStart = new Date(this["iny2"], this["inm2"], this["ind2"]);
rango2.rangeEnd = new Date(this["outy2"], this["outm2"], this["outd2"]);
arrayFechas = new Array();
arrayFechas = [rango1, rango2];
inst_datefield.disabledRanges = arrayFechas;
//}
} else {
trace("Error al cargar los datos");
}
};
fechas.load("http://localhost/fechas.php");
¿como puedo hacer un bucle con los objetos? donde hay un 1, 2, ... poner la n del bucle... lo he intentado de varias maneras pero voy un poco a ciegas...