【实例简介】
最近项目组要做一个日程管理,原先使用fullcalendar,后面使用xgcalendar,感觉效果更好,而且日历容易定位。
因每个java项目使用的框架不一样,所以我只提取出html,没有后台java的action、service的代码。html复制到你的jsp页面,后台依据项目需求进行编写。
【实例截图】
【核心代码】
xgcalendar
├── index.html
└── static
├── css
│ ├── main.css
│ └── plugin
│ ├── calendar.css
│ ├── dailog.css
│ └── minical.css
├── image
│ ├── bg
│ │ ├── btn_file.png
│ │ ├── invalid_line.gif
│ │ ├── panel_bg.gif
│ │ ├── rightTitle_bg.png
│ │ ├── tbg.gif
│ │ ├── text-bg.gif
│ │ ├── top_bg.png
│ │ └── topmenu_bg.png
│ ├── checkmark.png
│ ├── combined_v40_vr.png
│ ├── favicon.ico
│ ├── icon
│ │ └── s.gif
│ └── plugin
│ ├── dailog
│ │ ├── app-form.png
│ │ ├── headbg.gif
│ │ ├── left-corners.png
│ │ ├── left-right.png
│ │ ├── right-corners.png
│ │ ├── tool-sprites.gif
│ │ └── top-bottom.png
│ ├── dp
│ │ ├── btn-arrow.gif
│ │ ├── btn-arrow-light.gif
│ │ └── cal.gif
│ ├── dropdown
│ │ ├── dparrow.png
│ │ ├── gridth.gif
│ │ ├── tbg.gif
│ │ └── uquery.gif
│ ├── share
│ │ ├── del.gif
│ │ ├── glass-bg.gif
│ │ ├── hd-sprite.gif
│ │ ├── left-btn.gif
│ │ ├── right-btn.gif
│ │ └── tool-sprites.gif
│ └── validate
│ ├── accept.png
│ ├── exclamation.png
│ ├── tooltop2.gif
│ ├── tooltop.gif
│ ├── up_arrow.gif
│ └── warning.gif
└── js
├── common.js
├── lib
│ └── jquery
│ └── 1.6
│ └── jquery.js
├── locales
│ └── zh-cn.js
├── page
│ └── index.js
├── plugin
│ ├── jquery.ifrmdailog.js
│ ├── minicalendar.js
│ └── xgcalendar.js
├── seaconfig.js
└── sea.js
19 directories, 52 files