jQWidgets jqxScheduler clearAppointmentsSelection()方法
方法描述
clearAppointmentsSelection()
是 jQWidgets jqxScheduler
插件提供的用于清除选择的事件、约会的方法。
方法语法
$('#scheduler').jqxScheduler('clearAppointmentsSelection');
方法参数
该方法没有参数。
方法返回值
该方法没有返回值。
方法示例1
$('#scheduler').jqxScheduler({
date: new Date(),
height: 600,
resources:
{
colorScheme: "scheme05",
dataField: "calendar",
source: new $.jqx.dataAdapter(source)
},
appointments: [],
view: "weekView",
views:
[
'dayView',
'weekView',
'monthView'
]
});
$('#clearSelectionButton').click(function()
{
$("#scheduler").jqxScheduler('clearAppointmentsSelection');
}
在本示例中,创建了一个 jqxScheduler
对象,设置了对象的属性,包括date
、height
、resources
、appointments
、view
和views
等。并且创建一个 ClearSelectionButton
按钮,在该按钮的单击事件中调用 clearAppointmentsSelection()
方法,实现清除已选择的事件、约会。
方法示例2
$('#scheduler').jqxScheduler({
date: new Date(),
height: 600,
resources:
{
colorScheme: "scheme05",
dataField: "calendar",
source: new $.jqx.dataAdapter(source)
},
appointments: [],
view: "weekView",
views:
[
'dayView',
'weekView',
'monthView'
],
appointmentSelecting: function (event, args) {
var appointment = args.appointment;
var message = "Are you sure you want to delete this appointment?";
if (confirm(message) != true) {
$("#scheduler").jqxScheduler('clearAppointmentsSelection');
}
}
});
在本示例中,除了创建 jqxScheduler
对象外,还为 appointmentSelecting
事件绑定了一个处理函数,当用户试图选择一个约会时,会弹出一个提示窗口确认是否要删除约会。如果用户拒绝删除,则调用 clearAppointmentsSelection()
方法,清除选择的约会。
经过以上两个示例的演示, jQWidgets jqxScheduler clearAppointmentsSelection()
方法的使用方法和作用已经清晰明了。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:jQWidgets jqxScheduler clearAppointmentsSelection()方法 - Python技术站