- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我在我的 fullcalendar
中添加了一个自定义按钮:
ngOnInit() {
this.calendarOptions = {
customButtons: {
custom1: {
text: 'Add event',
click() {
this.openModal();
}
}
},
height: 600,
editable: true,
eventLimit: false,
locale: 'lt',
header: {
left: 'prev,next today, custom1,custom2',
center: 'title',
right: 'month,agendaWeek,agendaDay,listMonth'
},
events: ''
};}
然后在按钮上单击我想调用函数:
openModal() {
console.log('opened');
// '<app-add-event></app-add-event>';}
但是,我收到错误 zone.js:199 Uncaught TypeError: this.openModal is not a function
在 HTMLButtonElement.click (events-calendar.component.ts:20)
不知道怎么回事。你如何调用自定义函数?
我也试过:
this.calendarOptions = {
customButtons: {
custom1: {
text: 'Pridėti įvykį',
click:
this.openModal
}
}, ... };
在这种情况下 console.log();
可以正常工作,但之后我仍然收到以下错误。这里有什么问题?
我应该在这里的某个地方声明这个函数吗?
<ng-fullcalendar #ucCalendar [options]="calendarOptions" (eventClick)="eventClick($event.detail)" (eventDrop)="updateEvent($event.detail)"
(eventResize)="updateEvent($event.detail)" (clickButton)="clickButton($event.detail)"></ng-fullcalendar>
最佳答案
来自fullcalendar documentation :
customButtons: {
myCustomButton: {
text: 'custom!',
click: function() {
alert('clicked the custom button!');
}
}
}
您可以看到,click()
属性的自定义按钮声明中存在问题。
我很惊讶你仍然有引用 this.openModal
的错误。既然你说你尝试过 click: this.openModal
,我建议你试试 click : () => console.log('clicked')
。如果有效,问题可能出在 this
的使用上。
关于javascript - 从 customButton fullcalendar 调用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55224557/
所以我一直收到这个错误(无法将类型“CustomButton.Type”的值转换为预期的参数类型“CustomButton”)它仅在这一行代码上 cell.productStatus.inde
我一直在开发我的游戏,我有大量的图像按钮 我想从你们那里得到一些建议,有没有一种替代方法可以简化按钮状态,因为我想拥有按钮外观发生变化的功能当用户按下它时 就像现在我的项目中有很多这样的东西
我在我的 fullcalendar 中添加了一个自定义按钮: ngOnInit() { this.calendarOptions = { customButtons: { custom1:
我正在尝试在 highcharts 中使用创建自定义按钮具有默认颜色的“chart.renderer.button”。但是在悬停或按下时颜色似乎默认会改变......我不希望颜色在悬停和按下按钮时改变
我有一个自定义按钮: public class CustomButton : UIButton { public void HandleTouchUpInside(object sender,
我面临着创建自定义小部件的任务,它具有容器行为——内部有 3 个面板。 我想以一般的 UIBinder 方式使用它,例如 CustomButton 是否可以以某种方式定义自定义
对于硬件作业,我们应该创建一个自定义按钮来熟悉 swing 和响应事件。我们还打算让这个按钮成为一个事件源,这让我很困惑。我有一个 ArrayList 来跟踪将注册以监听我的 CustomButton
按下 RoundButton 组件时没有任何 react ,但是当我按下回车键时,它可以工作, 这是我的自定义按钮组件 自定义按钮 : import React from 'react'; impor
我是一名优秀的程序员,十分优秀!