- created FinancialDataDataGridSkin and modified FinancialDataItemRenderer
- hover highlight and selection removed for non-editable row
- backGround color added for editable row
- MX + Spark setting in Flex Build Path not allowing spark theme? This doesn’t allow Spark DataGrid to use alternatingRowColors property, ended up modifying FinancialDataItemRenderer instead of using the skin class
- cleaning up UI
- create view for budget_centers and appropriations joined
CREATE ALGORITHM = UNDEFINED VIEW `__view_budget_center` AS SELECT budget_centers . * , appropriations.duration, appropriations.status
FROM `budget_centers`
LEFT JOIN appropriations ON budget_centers.appropriation = appropriations.type
