在AlloyUI Scheduler中保存,编辑,删除和取消事件 [英] Save, Edit, Delete, and Cancel events in AlloyUI Scheduler

查看:147
本文介绍了在AlloyUI Scheduler中保存,编辑,删除和取消事件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何从AlloyUI的Scheduler中监听Save,Edit,Delete和Cancel事件?我需要将值保存在数据库中以备将来使用,但是我没有看到任何相关文档。

How can I listen for the Save, Edit, Delete, and Cancel events from AlloyUI's Scheduler? I need to save the value in our database for future use, but I don't see any documentation for this.

我当前拥有的代码是这样的:

The current code that I have is this:

YUI().use('aui-scheduler', function(Y) {
    var items = [
        {
            content: 'Wake Early'
        },
        {
            content: 'Exercise'
        },
    ];
    var schedulerViews = [
        new Y.SchedulerWeekView(),
        new Y.SchedulerDayView(),
        new Y.SchedulerMonthView(),
        new Y.SchedulerAgendaView()
    ];
   var eventRecorder = new Y.SchedulerEventRecorder();
    new Y.Scheduler({
        boundingBox: '#scheduler',
        items: items,
        views: schedulerViews,
        activeView: schedulerViews[2],
        eventRecorder: eventRecorder,
         firstDayOfWeek: 1,
        // activeView: weekView,
        // views: [dayView, weekView, monthView, agendaView]
    }).render();

    Y.Do.after(function() { 
      this.on("save",function(data){
       alert('Event:'+this.isNew()+' --- '+this.getContentNode().val());
      });   
    }, eventRecorder, 'showPopover');

});

到目前为止我还没有运气,有人可以帮我吗?我已经尝试过教程和也是如此,但是它们没有帮助。

I'm having no luck so far, can anyone help me out? I've tried this tutorial and this one as well but they haven't helped.

推荐答案

您应该使用未记录的保存编辑删除 SchedulerEventRecorder 取消 *事件。例如:

You should use the undocumented save, edit, delete, and cancel* events of SchedulerEventRecorder. For example:

var eventRecorder = new Y.SchedulerEventRecorder({
    on: {
        save: function(event) {
            alert('Save Event:' + this.isNew() + ' --- ' + this.getContentNode().val());
        },
        edit: function(event) {
            alert('Edit Event:' + this.isNew() + ' --- ' + this.getContentNode().val());
        },
        delete: function(event) {
            alert('Delete Event:' + this.isNew() + ' --- ' + this.getContentNode().val());
// Note: The cancel event seems to be buggy and occurs at the wrong times, so I commented it out.
//      },
//      cancel: function(event) {
//          alert('Cancel Event:' + this.isNew() + ' --- ' + this.getContentNode().val());
        }
    }
});

以下是您提供的代码的可运行示例:

Here's a runnable example with the code you provided:

YUI().use('aui-scheduler', function(Y) {
  var items = [{
    content: 'Wake Early'
  }, {
    content: 'Exercise'
  }, ];
  var schedulerViews = [
    new Y.SchedulerWeekView(),
    new Y.SchedulerDayView(),
    new Y.SchedulerMonthView(),
    new Y.SchedulerAgendaView()
  ];
  var eventRecorder = new Y.SchedulerEventRecorder({
    on: {
      save: function(event) {
        alert('Save Event:' + this.isNew() + ' --- ' + this.getContentNode().val());
      },
      edit: function(event) {
        alert('Edit Event:' + this.isNew() + ' --- ' + this.getContentNode().val());
      },
      delete: function(event) {
        alert('Delete Event:' + this.isNew() + ' --- ' + this.getContentNode().val());
// Note: The cancel event seems to be buggy and occurs at the wrong times, so I commented it out.
//      },
//      cancel: function(event) {
//        alert('Cancel Event:' + this.isNew() + ' --- ' + this.getContentNode().val());
      }
    }
  });
  new Y.Scheduler({
    boundingBox: '#scheduler',
    items: items,
    views: schedulerViews,
    activeView: schedulerViews[2],
    eventRecorder: eventRecorder,
    firstDayOfWeek: 1,
    // activeView: weekView,
    // views: [dayView, weekView, monthView, agendaView]
  }).render();

});

<script src="https://cdn.rawgit.com/stiemannkj1/701826667a70997013605edcd37e92a6/raw/469fe1ae297e72a5a80eb9015003b7b04eac735e/alloy-ui-3.0.1_aui_aui-min.js"></script>
<link href="https://cdn.rawgit.com/stiemannkj1/90be22de7f48c729b443af14796d91d3/raw/a9f35ceedfac7fc0559b121bed105eaf80f10bf2/aui-css_css_bootstrap.min.css" rel="stylesheet"></link>
<div id="myScheduler"></div>

* The cancel 事件似乎有点错误,并且在错误的时间发生,因此我将其注释掉。它似乎在任何其他事件发生时都会发生。

*The cancel event seems be a bit buggy and occurs at the wrong times, so I commented it out. It seems to occur whenever any other event occurs.

这篇关于在AlloyUI Scheduler中保存,编辑,删除和取消事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆