jQuery和jQuery UI 简单日常日程插件 日程

  • 源码大小:426.17KB
  • 所需积分:1积分
  • 源码编号:19JP-3668
  • 浏览次数:1075次
  • 最后更新:2023年07月09日
  • 所属栏目:时间和时钟
我要下载
加入收藏
本站默认解压密码:19jp.com 或 19jp_com

简介

一个简单易用的jQuery插件,用于从JavaScript对象中呈现可拖动、可调整大小和启用ajax的每日计划。

特征:

  • 支持基于jQuery UI的拖放事件。
  • 可调整计划大小。
  • AJAX支持。

参见:

  • jQuery插件使用时间选择器创建响应式时间表-schedulerjs

如何使用它:

1.在html页面上包含所需的jQuery和jQuery UI。

  1. <script src="jquery.min.js"></script>
  2. <script src="jquery-ui.min.js"></script>
  3. <link rel="stylesheet"href="jquery-ui.css">

2.在jQuery库之后包含jQuery调度插件的样式表和JavaScript。

  1. <script src="jq.schedule.js"></script>
  2. <link rel="stylesheet" href="style.css">

3.使用自定义事件呈现基本时间表。

  1. jQuery("#schedule").timeSchedule({
  2. rows : {
  3. '1' : {
  4. title : 'Title Area',
  5. subtitle : 'Description',
  6. schedule:[{
  7. start:'09:00',
  8. end:'12:00',
  9. text:'Text Area',
  10. data:{}
  11. },{
  12. start:'11:00',
  13. end:'14:00',
  14. text:'Text Area',
  15. data:{}
  16. }]
  17. },},
  18. });

4.自定义选项。

  1. // scheduled events
  2. rows : {},
  3.  
  4. // classname
  5. className: 'jq-schedule',
  6.  
  7. // schedule start time(HH:ii)
  8. startTime: "07:00",
  9.  
  10. // schedule end time(HH:ii)
  11. endTime: "21:00",
  12.  
  13. // width(px)
  14. widthTimeX: 25,
  15.  
  16. // cell timestamp example 10 minutes
  17. widthTime: 60 * 10,
  18.  
  19. // height(px)
  20. timeLineY: 60,
  21.  
  22. // options for time slots
  23. timeLineBorder:1,
  24. timeBorder:1, // border width
  25. timeLinePaddingTop:0,
  26. timeLinePaddingBottom:0,
  27. headTimeBorder:1, // time border width
  28.  
  29. // data width
  30. dataWidth:160,
  31.  
  32. // scrollbar (px)
  33. verticalScrollbar: 0,
  34.  
  35. // width to move all schedules to the right of the clicked time cell
  36. bundleMoveWidth: 1,
  37.  
  38. // draggable?
  39. draggable: true,
  40.  
  41. // resizable?
  42. resizable: true

5.事件处理程序。

  1. jQuery("#schedule").timeSchedule({
  2. onInitRow: : function(node, data){
  3. // do something
  4. },
  5. onChange: function(node, data){
  6. // do something
  7. },
  8. onClick: : function(node, data){
  9. // do something
  10. },
  11. onAppendRow: : function(node, data){
  12. // do something
  13. },
  14. onAppendSchedule: : function(node, data){
  15. // do something
  16. },
  17. onScheduleClick: : function(node, time, timeline){
  18. // do something
  19. }
  20. });

6.API方法。

  1. // get row data
  2. $("#schedule").timeSchedule('timelineData');
  3.  
  4. // get schedule data
  5. $("#schedule").timeSchedule('scheduleData');
  6.  
  7. // clear all data
  8. $("#schedule").timeSchedule('resetData');
  9.  
  10. // clear all data and rows
  11. $("#schedule").timeSchedule('resetRowData');
  12.  
  13. // add row
  14. $("#schedule").timeSchedule('addRow', timeline, {
  15. title : 'Title Area',
  16. schedule:[
  17. {
  18. start: '09:00',
  19. end: '12:00',
  20. text: 'Text Area',
  21. data: {}
  22. }
  23. ]
  24. });
  25.  
  26. // add data
  27. $("#schedule").timeSchedule('addSchedule', timeline, {
  28. start: start,
  29. end: end,
  30. text: 'Insert Schedule',
  31. data: {}
  32. });
  33.  
  34. // enable/disable draggable and resizable
  35. $("#schedule").timeSchedule('setDraggable', true);
  36. $("#schedule").timeSchedule('setResizable', false);

更新日志:

2022-03-17

  • v3.1.8:错误修复

2020-09-27

  • v3.1.0:更新左侧调整大小选项

2020-03-16

  • v3.1.0:更新左侧调整大小选项

2020-03-15

  • v3.0.2:已修复“可调整大小”

2020-03-14

  • v3.0.1:多计划支持。

2020-03-10

  • v2.4.0版本:添加字幕选项

2020-02-22

  • v2.3.1版本

2020-02-01

  • 允许调整大小以获得更好的可见性

2019-12-24

  • 类型安全支持

2019-12-15

  • v2.2.1版本

2019-12-15

  • v1.0.1版本

2019-01-20

  • 添加捆绑包移动选项

预览截图