实例介绍
flex做的甘特图源码,同时里面附带甘特图后台服务和数据库。希望对大家有所帮助。
【实例截图】
【核心代码】
4744302543450531772.rar
├── GanttServer
│ ├── ganttdb.sql
│ ├── src
│ │ ├── applicationContext.xml
│ │ ├── com
│ │ │ ├── gantt
│ │ │ │ ├── action
│ │ │ │ │ └── opms
│ │ │ │ │ ├── CommonAction.java
│ │ │ │ │ └── TaskFlexAction.java
│ │ │ │ ├── basebean
│ │ │ │ │ └── QueryResult.java
│ │ │ │ ├── bean
│ │ │ │ │ └── opms
│ │ │ │ │ ├── Assignment.java
│ │ │ │ │ ├── Dependency.java
│ │ │ │ │ ├── ProInfo.java
│ │ │ │ │ └── TaskFlex.java
│ │ │ │ ├── filter
│ │ │ │ │ └── EncodeFilter.java
│ │ │ │ ├── iws
│ │ │ │ │ └── TaskServiceFlex.java
│ │ │ │ ├── listener
│ │ │ │ │ └── ApplicationListener.java
│ │ │ │ ├── online
│ │ │ │ │ └── util
│ │ │ │ │ ├── DateTimeUtils.java
│ │ │ │ │ ├── Globarle.java
│ │ │ │ │ └── PDFUtils.java
│ │ │ │ ├── paramsSin
│ │ │ │ │ └── OpmsPDFParamsSin.java
│ │ │ │ ├── service
│ │ │ │ │ ├── base
│ │ │ │ │ │ ├── DAO.java
│ │ │ │ │ │ └── DaoSupport.java
│ │ │ │ │ └── opms
│ │ │ │ │ ├── CommonService.java
│ │ │ │ │ ├── impl
│ │ │ │ │ │ ├── CommonServiceBean.java
│ │ │ │ │ │ └── OpmsProInfoServiceBean.java
│ │ │ │ │ └── OpmsProInfoService.java
│ │ │ │ ├── util
│ │ │ │ │ ├── Contants.java
│ │ │ │ │ └── ServletUtisw.java
│ │ │ │ └── ws
│ │ │ │ └── TaskServiceFlexBean.java
│ │ │ └── ganttreturnresult
│ │ │ ├── BaseReturn.java
│ │ │ └── TaskInfoFlexReturn.java
│ │ ├── log4j.properties
│ │ ├── META-INF
│ │ │ └── persistence.xml
│ │ └── struts.xml
│ ├── WebRoot
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ └── WEB-INF
│ │ ├── classes
│ │ │ ├── applicationContext.xml
│ │ │ ├── com
│ │ │ │ ├── gantt
│ │ │ │ │ ├── action
│ │ │ │ │ │ └── opms
│ │ │ │ │ │ ├── CommonAction.class
│ │ │ │ │ │ └── TaskFlexAction.class
│ │ │ │ │ ├── basebean
│ │ │ │ │ │ └── QueryResult.class
│ │ │ │ │ ├── bean
│ │ │ │ │ │ └── opms
│ │ │ │ │ │ ├── Assignment.class
│ │ │ │ │ │ ├── Dependency.class
│ │ │ │ │ │ ├── ProInfo.class
│ │ │ │ │ │ └── TaskFlex.class
│ │ │ │ │ ├── filter
│ │ │ │ │ │ └── EncodeFilter.class
│ │ │ │ │ ├── iws
│ │ │ │ │ │ └── TaskServiceFlex.class
│ │ │ │ │ ├── listener
│ │ │ │ │ │ └── ApplicationListener.class
│ │ │ │ │ ├── online
│ │ │ │ │ │ └── util
│ │ │ │ │ │ ├── DateTimeUtils.class
│ │ │ │ │ │ ├── Globarle.class
│ │ │ │ │ │ └── PDFUtils.class
│ │ │ │ │ ├── paramsSin
│ │ │ │ │ │ └── OpmsPDFParamsSin.class
│ │ │ │ │ ├── service
│ │ │ │ │ │ ├── base
│ │ │ │ │ │ │ ├── DAO.class
│ │ │ │ │ │ │ └── DaoSupport.class
│ │ │ │ │ │ └── opms
│ │ │ │ │ │ ├── CommonService.class
│ │ │ │ │ │ ├── impl
│ │ │ │ │ │ │ ├── CommonServiceBean.class
│ │ │ │ │ │ │ └── OpmsProInfoServiceBean.class
│ │ │ │ │ │ └── OpmsProInfoService.class
│ │ │ │ │ ├── util
│ │ │ │ │ │ ├── Contants$Dependency.class
│ │ │ │ │ │ ├── Contants$Project.class
│ │ │ │ │ │ ├── Contants$Task.class
│ │ │ │ │ │ ├── Contants.class
│ │ │ │ │ │ └── ServletUtisw.class
│ │ │ │ │ └── ws
│ │ │ │ │ └── TaskServiceFlexBean.class
│ │ │ │ └── ganttreturnresult
│ │ │ │ ├── BaseReturn.class
│ │ │ │ └── TaskInfoFlexReturn.class
│ │ │ ├── log4j.properties
│ │ │ ├── META-INF
│ │ │ │ ├── persistence.xml
│ │ │ │ └── xfire
│ │ │ │ └── services.xml
│ │ │ └── struts.xml
│ │ ├── lib
│ │ │ ├── ant.jar
│ │ │ ├── antlr-2.7.6.jar
│ │ │ ├── aspectjrt.jar
│ │ │ ├── aspectjweaver.jar
│ │ │ ├── axis2-jaxws-1.4.1.jar
│ │ │ ├── c3p0-0.9.1.2.jar
│ │ │ ├── cglib-nodep-2.1_3.jar
│ │ │ ├── common-annotations.jar
│ │ │ ├── commons-beanutils.jar
│ │ │ ├── commons-collections-3.1.jar
│ │ │ ├── commons-fileupload-1.2.1.jar
│ │ │ ├── commons-io-1.3.2.jar
│ │ │ ├── commons-lang-2.4.jar
│ │ │ ├── commons-lang3-3.1.jar
│ │ │ ├── commons-logging-1.0.4.jar
│ │ │ ├── commons-logging-1.1.jar
│ │ │ ├── dom4j-1.6.1.jar
│ │ │ ├── ehcache-1.2.3.jar
│ │ │ ├── ejb3-persistence.jar
│ │ │ ├── EncodingTest.jar
│ │ │ ├── ezmorph-1.0.6.jar
│ │ │ ├── freemarker-2.3.15.jar
│ │ │ ├── hibernate3.jar
│ │ │ ├── hibernate-annotations.jar
│ │ │ ├── hibernate-cglib-repack-2.1_3.jar
│ │ │ ├── hibernate-commons-annotations.jar
│ │ │ ├── hibernate-entitymanager.jar
│ │ │ ├── itextpdf-5.4.3.jar
│ │ │ ├── itext-pdfa-5.4.3.jar
│ │ │ ├── itext-xtra-5.4.3.jar
│ │ │ ├── jacob.jar
│ │ │ ├── javassist-3.4.GA.jar
│ │ │ ├── jcom.jar
│ │ │ ├── jodconverter-core-3.0-beta-4.jar
│ │ │ ├── json-lib-2.2.3.jar
│ │ │ ├── json-lib-2.4-jdk15.jar
│ │ │ ├── jstl.jar
│ │ │ ├── jta-1.1.jar
│ │ │ ├── juh-3.2.1.jar
│ │ │ ├── junit-3.8.1.jar
│ │ │ ├── junit-4.8.1.jar
│ │ │ ├── jurt-3.2.1.jar
│ │ │ ├── log4j-1.2.13.jar
│ │ │ ├── log4j-1.2.15.jar
│ │ │ ├── mpxj.jar
│ │ │ ├── mysql-connector-java-3.1.14-bin.jar
│ │ │ ├── ognl-2.7.3.jar
│ │ │ ├── org.springframework.web.servlet-3.1.1.RELEASE.jar
│ │ │ ├── pager-taglib.jar
│ │ │ ├── poi-3.7-20101029.jar
│ │ │ ├── poi-3.8-20120326.jar
│ │ │ ├── poi-examples-3.8-20120326.jar
│ │ │ ├── poi-excelant-3.8-20120326.jar
│ │ │ ├── poi-ooxml-3.8-20120326.jar
│ │ │ ├── poi-ooxml-schemas-3.8-20120326.jar
│ │ │ ├── poi-scratchpad-3.8-20120326.jar
│ │ │ ├── ridl-3.2.1.jar
│ │ │ ├── slf4j-api-1.5.2.jar
│ │ │ ├── slf4j-log4j12.jar
│ │ │ ├── spring-2.5.6.jar
│ │ │ ├── spring.jar
│ │ │ ├── standard.jar
│ │ │ ├── stax-api-1.0.1.jar
│ │ │ ├── struts2-core-2.1.8.jar
│ │ │ ├── struts2-spring-plugin-2.1.8.jar
│ │ │ ├── unoil-3.2.1.jar
│ │ │ ├── xmlbeans-2.3.0.jar
│ │ │ └── xwork-core-2.1.6.jar
│ │ └── web.xml
│ └── WebServices
│ └── services.xml
└── projectgantt
├── bin-debug
│ ├── advancedgrids_4.6.0.23201.swf
│ ├── com
│ │ └── gantt
│ │ └── module
│ │ └── ganttmodule.swf
│ ├── css
│ │ └── panel_title.png
│ ├── framework_4.6.0.23201.swf
│ ├── history
│ │ ├── history.css
│ │ ├── historyFrame.html
│ │ └── history.js
│ ├── icon
│ │ ├── addrow.png
│ │ ├── average.png
│ │ ├── close.png
│ │ ├── delete.png
│ │ ├── deleteRes.png
│ │ ├── empty.png
│ │ ├── export.png
│ │ ├── eye.png
│ │ ├── flags.png
│ │ ├── gantt_close.png
│ │ ├── gantt_open.png
│ │ ├── gantt.png
│ │ ├── greenlx.png
│ │ ├── grid.png
│ │ ├── group.png
│ │ ├── groups.png
│ │ ├── help.png
│ │ ├── horizontal.png
│ │ ├── import.png
│ │ ├── jixian.png
│ │ ├── lingxing.png
│ │ ├── lx.png
│ │ ├── lxred.png
│ │ ├── menu2.png
│ │ ├── menu.png
│ │ ├── move.png
│ │ ├── network.png
│ │ ├── new.png
│ │ ├── orlx.png
│ │ ├── people.png
│ │ ├── print.png
│ │ ├── qianfengxian.png
│ │ ├── querydown.png
│ │ ├── queryup.png
│ │ ├── readonly.png
│ │ ├── redo.png
│ │ ├── refresh.png
│ │ ├── reload.png
│ │ ├── resize.png
│ │ ├── retract.png
│ │ ├── row.png
│ │ ├── save.png
│ │ ├── search.png
│ │ ├── shanchu.png
│ │ ├── sure.png
│ │ ├── taskclose.png
│ │ ├── taskopen.png
│ │ └── vertical.png
│ ├── mx_4.6.0.23201.swf
│ ├── playerProductInstall.swf
│ ├── projectgantt.html
│ ├── projectgantt.swf
│ ├── rpc_4.6.0.23201.swf
│ ├── spark_4.6.0.23201.swf
│ ├── sparkskins_4.6.0.23201.swf
│ ├── swfobject.js
│ └── textLayout_2.0.0.232.swf
├── html-template
│ ├── history
│ │ ├── history.css
│ │ ├── historyFrame.html
│ │ └── history.js
│ ├── index.template.html
│ ├── playerProductInstall.swf
│ └── swfobject.js
├── libs
│ ├── as3corelib.swc
│ └── ObjectHandles-2.0.0008_FLEX4.swc
└── src
├── com
│ └── gantt
│ ├── common
│ │ ├── CalculatePath.as
│ │ ├── CommonUtil.as
│ │ ├── DateUtil.as
│ │ ├── GanttProperties.as
│ │ ├── GlowTween.as
│ │ ├── LabelImage.as
│ │ ├── LineFlag.as
│ │ ├── LinkLine.as
│ │ ├── PrintGantt.as
│ │ └── ResourceLabel.as
│ ├── dao
│ │ └── TaskDao.as
│ ├── datagrid
│ │ ├── leftdatagrid.mxml
│ │ ├── ResourceGrid.mxml
│ │ ├── ResourceTasks.mxml
│ │ └── rightdatagrid.mxml
│ ├── diycolumn
│ │ ├── AdvancedDataGridGanttItem.mxml
│ │ ├── AdvancedDataGridItem.mxml
│ │ ├── AdvancedHeaderRenderColumnDate.mxml
│ │ ├── AdvancedHeaderRenderColumnGroup.mxml
│ │ ├── AdvancedHeaderRenderColumnMc.mxml
│ │ ├── AdvancedHeaderRenderColumn.mxml
│ │ ├── AdvancedHeaderRenderColumnShowDate.mxml
│ │ ├── DateLabel.as
│ │ ├── GanttAdvancedDataGrid.as
│ │ ├── GanttItem.as
│ │ ├── LineDescriptor.as
│ │ ├── MyAdvancedDataGrid.as
│ │ ├── MyButtonSkin.mxml
│ │ ├── MyHSlider.mxml
│ │ ├── MyObjectHandlers.as
│ │ ├── PolylineDescriptor.as
│ │ ├── ProgressBarSlider.as
│ │ ├── ProjectButton.as
│ │ └── SetColumns.mxml
│ ├── diyItemsEditors
│ │ ├── itemEditorDate.mxml
│ │ └── ItemEditorMc.mxml
│ ├── diyItemsRenderers
│ │ ├── ItemRendererId.mxml
│ │ ├── itemRendererMc.mxml
│ │ └── itemRendererTime.mxml
│ ├── event
│ │ └── CommonEvent.as
│ ├── menu
│ │ └── DatagridContextMenu.as
│ ├── module
│ │ └── ganttmodule.mxml
│ ├── networkmap
│ │ ├── NetworkButton.as
│ │ ├── NetworkButtonExample.mxml
│ │ ├── NetworkMap.mxml
│ │ └── Network.mxml
│ ├── resource
│ │ └── Resource.mxml
│ ├── taskInfo
│ │ ├── GanttItemExp.mxml
│ │ ├── PrintWindow.mxml
│ │ ├── QianfengxianWindow.mxml
│ │ ├── Task.as
│ │ ├── TaskEditWindow.mxml
│ │ ├── UploadFile.mxml
│ │ └── ZqxTaskWindow.mxml
│ ├── timePicker
│ │ ├── DateTimeChooser.as
│ │ └── DateTimeField.as
│ └── vip
│ ├── AdvancedHeaderRender.mxml
│ ├── ChartRenderer.mxml
│ ├── mouseright.mxml
│ └── SummaryRenderer.mxml
├── css
│ ├── mystyle.css
│ ├── panel_title.png
│ └── windows_title_bar.png
├── icon
│ ├── add.png
│ ├── addrow.png
│ ├── average.png
│ ├── close.png
│ ├── delete.png
│ ├── deleteRes.png
│ ├── empty.png
│ ├── export.png
│ ├── eye.png
│ ├── flags.png
│ ├── gantt_close.png
│ ├── gantt_open.png
│ ├── gantt.png
│ ├── greenlx2.png
│ ├── greenlx.png
│ ├── grid.png
│ ├── group.png
│ ├── groups.png
│ ├── help.png
│ ├── horizontal.png
│ ├── import.png
│ ├── jixian.png
│ ├── lingxing.png
│ ├── lx.png
│ ├── lxred.png
│ ├── menu2.png
│ ├── menu.png
│ ├── move.png
│ ├── network.png
│ ├── new.png
│ ├── orlx.png
│ ├── people.png
│ ├── print.png
│ ├── qianfengxian.png
│ ├── querydown.png
│ ├── queryup.png
│ ├── readonly.png
│ ├── redo.png
│ ├── refresh.png
│ ├── reload.png
│ ├── resize.png
│ ├── retract.png
│ ├── row.png
│ ├── save.png
│ ├── search.png
│ ├── select.png
│ ├── shanchu.png
│ ├── sure.png
│ ├── taskclose.png
│ ├── taskopen.png
│ └── vertical.png
└── projectgantt.mxml
81 directories, 321 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论