本文介绍了是否有Scheduler / Calendar JS Widget库?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在寻找一些基于JavaScript的组件用作课程计划,这将是Google日历和登录时间之间的交叉。我不知道这是否适合的术语是课程计划,但我将在这里更详细地描述。

I am looking for some JavaScript based component to be used as a course scheduler which would be a cross between Google Calendar and the login time. I do not know if the right term for this is Course Scheduler but I shall describe this in more detail here.

课程计划

该小部件将用于输入课程的日期和时间,例如,如果我每周7天在星期一,星期二和星期三每天3天运行编程课程从9月1日至11月30日每天2小时。我可以回答各种问题,课程数据将显示在日历中。

Course Scheduler
The widget would be used to enter date and times of a course, as an example if I run a programming course 3 days a week on Mon, Tue and Wed every 7:00 am to 9:00am, 2 hours every day from 1st September to 30th November. I could answer various questions and the course data would be displayed in the calendar. It would also allow for non pattern based timings where each week is different from the other week etc.

问题

那么我最终会从头开始创造一些东西吗?使用Google Calendar API进行此操作是否明智?我对一些小部件进行了Google搜索,但我相信我需要更好的关键字,因为我找不到任何接近我要找的东西。任何提示?商业图书馆也会为我工作。

Question
So would I end up creating something from scratch? Would it be sensible to use Google Calendar API for this? I did a Google search for some widgets, but I believe I need better keywords, as I could not find anything close to what I am looking for. Any tips? Commercial libraries would also work for me. Thanks.

推荐答案

这可能是您要查找的内容:

this could be what you're looking for:


  • 它具有日/周/月查看

  • 它是免费的

  • 数据可以以xml或iCal格式加载

  • It has day/week/month views
  • It is free
  • Data can be loaded in xml or iCal formats

您可以使用任何服务器端脚本语言填充日历。如果您愿意,您可以根据上面接受的帖子中的Mickey示例获取您的Google日历的xml数据,使用您选择的服务器端语言处理,并为该日历控件提供该数据。

You can populate the calendar using any server-side scripting language. If you wanted to, you could just get your google calendar's xml data as per Mickey's example in the accepted post above, process it in your server-side language of choice and feed the calendar control with that data.

EDIT

我最近还在Google代码上找到此项目:

I also found this project on Google code recently:

这篇关于是否有Scheduler / Calendar JS Widget库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-23 19:27