Phil 3.29.13

8:00 – 4:00 ESSO

  • Backups
  • Got the PIT Crew wish list from Lenny. Putting all of it in the PPM/PA Req’s page (as a GIANT grid. Sheesh!)
  • Back to debugging Flexichart.
    • Yay – found where the xml isn’t getting updated using the SeriesConfig.subConfig_seriesConfigChangedHandler() method I added. The seriesSubConfig.seriesConfig xml is updating but the config xml isn’t reflecting that change. Now I need to find out why…
    • Have not found out why, but here’s the fix. I’ll put it in SeriesConfig.subConfig_seriesConfigChangedHandler() on Monday:
	var targetId:String = (subConfig).@id;
	var changeTarget:XMLList = config.series.series.(@id == targetId);
	if(changeTarget.length() > 0){
		changeTarget[0] = subConfig;
	}