- modified SearchBox in SeachableDataGrid
- use DataGridSearchFilterHBox schema
- add red to matching text/string
- changed AlertDataGrid to use SearchableDataGrid
- if verticalScrollPolicy=”on” is not set, the columns resize misbehaves….
Monthly Archives: September 2012
Dong Shin 09.27.2012
- continue working on Alerts
- Alert Filter – done
- by people, programs, MIPRs, status, duration
- checkboxes to select matching data, multiple selections in each category is OR and multiple categories selection is AND
- duration calculation for timestamp field
- DATEDIFF(CURRENT_TIMESTAMP, timestamp)
- no selection will return all the data
- added search/filter on local dataprovider
- Alert Filter – done
- some nice datagrids for search and filtering data
- Searchable DataGrid– very nice filter/search
- DataGrid with client-side filtering and searching
- converted both to Flex 4.6 – some tweaking required, especially csss, may replace search/filter on PA
- check in SearchFilterDataGrid Lib project, sample app SearchFilterDGApp in my sandbox
- cool software of the day!
- Mouse without Border from Microsoft (? from Microsoft) – works better than Synergy or Input Director
Dong Shin 09.26.2012
- continue working on Alerts and Alert Comments
- working through interfaces – adding comments, alert status changes done
- mx:DataGrid wouldn’t work correctly with variableRowHeight and wordWrap set to true, changed to spark:DataGrid… works better, but not perfect.
- old ItemRenderer would not work with s:DataGrid… spark uses s:GridItemRenderer
- working on filtering data
Dong Shin 09.25.2012
- went to Fort to talk to Jessica
- Create Project bug reported by Jessica – caused by incorrectly set permissions, fixed by changing permissions thru Roles Management
- Alerts
- statuses – Open, Acknowledged, Closed (action)
- need comments (required on Close status) per user
- everybody on project gets alerts
- single alert per users
- Alert acknowledgements to PM’s only
- Funding Request open bug?
- would not finish loading certain FR, clicking an item in menu somehow finishes it up. Doesn’t happen on other FR’s, though.
- increase phpmyadmin session timeout
- continue working on Alerts
- changed alerts table structure – added four types of users (list separated by comma)
- reworked AlertsDataGrid for the new structure
- added AddCommentWindow – kicks in when Alert is closed
- Double click on Alert DataGrid show AlertsEditWindow
- add comments implemented
Dong Shin 09.24.2012
- continue working on Alerts
- OPEN alerts must be acknowledged on login – done
- working on Alert Mgmt for Admins
- manually installed Flex 4.6 SDK doesn’t allow Design View – unsupported version?
- downloadig Flash Builder 4.6
- managed to blow away 3.5 sdk, ugh! Using 3.6 would not compile PPM!
- changed all projects using 3.5 SDK to use 3.6, it comples and runs now. I guess 3.5 is not needed after all..
Dong Shin 09.21.2012
- continue working on Alerts Mgmt
- created database/table – resources/alerts_table_setup.sql
- use PPM’s setupModel.xml to read in table info
- ProjectAssistant project behaving weird.. just like ResizableControls
- MX components (DataGrid) not found, couldn’t fix by changing project configurations. Ugh!
- created new project and moved the sources/resources over. it now works
Dong Shin 09.20.2012
- changed Library Path of PA to use ResizableControls project instead of linking Maven one, and got weird errors
- Unable to locate specified base class ‘spark.components.Group’ ERROR
- downloaded, installed 4.6 SDK. same error
- created a new project and copied source over, now it works
- renamed old to ResizableControlOldMaven checked in the new project
- received Alerts requirement doc from JR, reviewed it, added more stuff, and sent it back
- working on Alerts Mgmt in PA
Dong Shin 09.19.2012
- at Fort this morning to check on things…
- everything is well, no bugs! yeah!
- went over the JR’s bugs list and changed the statuses
- Excel exports from Visibility are in String, JR was having problem converting columns to Numbers… selecting columns and convert it into Numbers wouldn’t work, manually entering cursor would do the trick. But this would be done in every cell? not very efficient.
- finished up search capability in Database Mgmt panel
Dong Shin 09.18.2012
- forgot the credentials to access SSH and database fgmdev.com, contacted Tom and got the info…
- reworking Database Mgmt panel
- moved label and nav buttons to bottom
- added support for search tables
- fields separated by space and uses OR
Dong Shin 09.17.2012
- spend some time setting up DEV environment
- centralized all settings to C:DEV
- new XAMPP includes Tomcat 7!
- configure Apache to use mod_jk to forward webapps request to Tomcat – httpd.conf and httpd-ssl.conf
- fixed ant script (build.xml) errors for ProjPortfolioMgr
- need TOMCAT_WEBAPPS environment variable to be set (C:DEVxampptomcatwebapps)
- aboutWindow always shows for ProjPortfolioMgr
Phil 9.12.12
8:30 – 4:30 ESSO
- Deployed new PPM
- Tried to set up a recurring task to do DB backups. We’ll see if it works. I have my doubts.
- The servers that we thought we had may not be the correct servers. Still, I asked for the fully qualified domain name. It should be interesting to see if we can get on them regardless.
- Jessica is coming over this afternoon to discuss Alerts.
Dong Shin 09.12.2012
- deployed new PPM and updated the sub projects with $0 totals. Appears to be working fine, but refresh in Project Mgmt still misbehaves
- continue setting up the desktop for development
- organizing and checking in all sandbox projects to SVN
- meeting w/ JR on Alerts
- Alerts requested
- Mitigation Strategy doesn’t change from month to month
- Plan differs from actuals by certain %
- Data missing on certain month
- not obligated within certain #(30) days after acceptance
- not accepted within 30 days
- JR will write up requirements
- Alerts requested
Phil 9.11.12
8:30 – 2:30 ESSO
- Deployed new PPM
- Backups
- Fixed the problem with VSS’s testServlet. It was the lack of needed jars
- Some back and forth with Denise P. We might have our production Server?
- Jessica will probably come over tomorrow afternoon for alert discussions
- Working on GWT.
2:30 – 4:30 FP
- Qualitative methods
Dong Shin 09.11.2012
- new bugs
- totals for sub projects still not working
- Total Budget in Project Management panel doubles for sub projects
- incomplete (missing Budget Center/MIPR) sub projects don’t show in the parent project
- Funding Request selection needs to be expandable/resizable
- Funding Request needs save confirmation on window close
- need search capability in Database Mgmt panel
- fixed Total Budget not showing correctly
- use following query to find and remove duplicates
- SELECT GROUP_CONCAT(uid) as duplicates FROM `yearly_totals` WHERE 1
GROUP BY project_id, fiscal_year
HAVING count(*) > 1
- updated ChangeLogPanel in EdgeUtils and FGMFlexUtils45 to have variableRowHeight for description column
- Funding Request select window is now expanable/resizable
- incomplete sub projects are red in Create Project panel
- updated query to get sub projects to include incomplete projects
- SELECT p1.project_number AS projectID, p1.title AS projectName, p2.sub_project_id as subProjectID, p1.begin_year AS startFY, p1.end_year AS endFY, p1.total_budget AS totalBudget, p2.*,
SUM(IF(a.year=1, a.amount, NULL)) as year1Amount,
SUM(IF(a.year=2, a.amount, NULL)) as year2Amount,
SUM(IF(a.year=3, a.amount, NULL)) as year3Amount,
SUM(IF(a.year=4, a.amount, NULL)) as year4Amount,
SUM(IF(a.year=5, a.amount, NULL)) as year5Amount,
SUM(IF(a.year=6, a.amount, NULL)) as year6Amount,
SUM(IF(a.year=7, a.amount, NULL)) as year7Amount,
SUM(IF(a.year=8, a.amount, NULL)) as year8Amount,
SUM(IF(a.year=9, a.amount, NULL)) as year9Amount,
SUM(IF(a.year=10, a.amount, NULL)) as year10Amount
FROM projects p1, _project_sub_projects p2, budget_centers c, budget_amounts a
WHERE p2.project_id = 177 AND p2.sub_project_id = p1.uid AND c.project_id = p2.sub_project_id AND c.uid = budget_center_id GROUP BY c.project_id
UNION
SELECT p1.project_number AS projectID, p1.title AS projectName, p2.sub_project_id as subProjectID, p1.begin_year AS startFY, p1.end_year AS endFY, p1.total_budget AS totalBudget, p2.*,
0 as year1Amount,
0 as year2Amount,
0 as year3Amount,
0 as year4Amount,
0 as year5Amount,
0 as year6Amount,
0 as year7Amount,
0 as year8Amount,
0 as year9Amount,
0 as year10Amount
FROM projects p1, _project_sub_projects p2
WHERE p2.project_id = 177 AND p2.sub_project_id = p1.uid AND p2.sub_project_id NOT IN
(SELECT c.project_id FROM budget_centers c)
- SELECT p1.project_number AS projectID, p1.title AS projectName, p2.sub_project_id as subProjectID, p1.begin_year AS startFY, p1.end_year AS endFY, p1.total_budget AS totalBudget, p2.*,
Dong Shin 09.10.2012
- setting up the desktop in the office for development
- fixed Totals not calculating for sub projects
You must be logged in to post a comment.