使用 Jquery UI droppable 访问 Backbone.js 视图对象

发布于 2024-12-13 04:53:06 字数 759 浏览 0 评论 0原文

我有一个拖放 UI,基本上可以与 jquery ui 和backbone.js 配合使用。我的视图如下所示:

render: function()
{
    $(this.el).html(ich.template_bucket(this.model.toJSON()));

    $(this.el).draggable(
        {
            helper: "clone"
        }
    );

    var that = this;
    $(this.el).droppable(
        {
            hoverClass: 'ui-state-hover',
            drop: function( event, ui )
            {
                var from_bucket_id = ui.draggable.attr('id');
                var to_bucket_id = $(that.el).attr('id');
            }
        }
    );

    return this;
},

我可以通过 that 访问 dropped on 视图,但是是否可以在可放置回调中获取拖动的视图?

或者,我最终想做的是,当拖动发生后弹出的模式窗口(另一个主干视图)内发生某些情况时,更新两个视图(拖放到视图中)。该视图不与两个视图共享模型,因此我不确定是否有任何我可以监听的事件。

I've got a drag and drop UI basically working with jquery ui and backbone.js. My view looks like:

render: function()
{
    $(this.el).html(ich.template_bucket(this.model.toJSON()));

    $(this.el).draggable(
        {
            helper: "clone"
        }
    );

    var that = this;
    $(this.el).droppable(
        {
            hoverClass: 'ui-state-hover',
            drop: function( event, ui )
            {
                var from_bucket_id = ui.draggable.attr('id');
                var to_bucket_id = $(that.el).attr('id');
            }
        }
    );

    return this;
},

I can access the dropped on view via that, but is it possible to get a hold of the dragged view inside the droppable callback?

Alternatively, what I'm ultimately trying to do is update the two views (the dragged and dropped into views) when something happens inside a modal window that pops up (another backbone view) after the drag happens. This view doesn't share models with the two views, so I'm not sure if there's any events I can listen to.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月下凄凉 2024-12-20 04:53:06

在拖放视图中,我通常会获取拖动视图的模型并更新它。我通过向每个拖动视图的 el Dom 元素添加一个 cid 属性来实现这一点,这样就可以轻松进入放置功能。我的模型存储在拖放视图可以访问的集合中。

In the dropped-on view I usually get the dragged view's model and update it. I do that by adding a cid attribute to each dragged view's el Dom element, so its easy to get in the drop function. My models are stored in a collection the dropped-on view has access to.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文