- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经在 Angular 4 中实现了完整的日历调度程序。我引用此链接 https://fullcalendar.io/ 。完整日历需要实现资源分组,但它不适合我。
Package.json
{
"name": "demo6",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^6.0.3",
"@angular/common": "^6.0.3",
"@angular/compiler": "^6.0.3",
"@angular/core": "^6.0.3",
"@angular/forms": "^6.0.3",
"@angular/http": "^6.0.3",
"@angular/platform-browser": "^6.0.3",
"@angular/platform-browser-dynamic": "^6.0.3",
"@angular/router": "^6.0.3",
"@types/jqueryui": "^1.12.2",
"angular-draggable": "^1.0.1",
"core-js": "^2.5.4",
"fullcalendar": "^3.9.0",
"fullcalendar-scheduler": "^1.9.4",
"jquery": "^3.3.1",
"jquery-ui-dist": "^1.12.1",
"moment": "^2.22.2",
"rxjs": "^6.0.0",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.6.8",
"@angular/cli": "~6.0.8",
"@angular/compiler-cli": "^6.0.3",
"@angular/language-service": "^6.0.3",
"@types/jasmine": "~2.8.6",
"@types/jasminewd2": "~2.0.3",
"@types/jquery": "^3.3.0",
"@types/node": "~8.9.4",
"awesome-typescript-loader": "^5.2.0",
"codelyzer": "~4.2.1",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"jqueryui": "^1.11.1",
"karma": "~1.7.1",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.0",
"karma-jasmine": "~1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "~5.3.0",
"source-map-loader": "^0.2.3",
"ts-node": "~5.0.1",
"tslint": "~5.9.1",
"typescript": "^2.7.2",
"webpack": "^4.16.0"
}
}
这是我尝试过的代码。
`让containerEl:JQuery = $('#calendar');
containerEl.fullCalendar({
schedulerLicenseKey: 'CC-Attribution-NonCommercial-NoDerivatives',
editable: true,
droppable: true,
aspectRatio: 1.2,
scrollTime: '06:00',
header: {
left: 'today prev,next',
center: 'title',
right: 'timelineDay,agendaWeek,month'
},
defaultView: 'timelineDay',
resourceGroupField: 'jobnum',
resourceLabelText: 'Jobs',
resources: [
{}
],
events: [
],
drop: function (date) {
if ($('#drop-remove').is(':checked')) {
$(this).remove();
}
},
eventReceive: function (event) {
console.log('eventReceive', event);
self.getEvent();
},
eventDrop: function (event) {
console.log('eventDrop', event);
}
});`
当我使用 jobnum
作为分组资源的属性名称时,会出现错误
ERROR in src/app/app.component.ts(39,29): error TS2345: Types of property 'resources' are incompatible. Type '{ jobnum: string; }[]' is not assignable to type 'ResourceSourceInput'. Type '{ jobnum: string; }[]' is not assignable to type 'ResourceFunction'. Type '{ jobnum: string; }[]' provides no match for the signature '(callback: ResourceFunctionCallback, start: Moment, end: Moment, timezone: string): void'.
任何人请帮助我。提前致谢。
最佳答案
您需要像下面的代码一样更改初始化。您需要使用<any>
(<any>$('#calendar')).fullCalendar({
...
...
});
关于jquery - 完整日历中的resourceGroupField在 Angular 4中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51355051/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!