如何在JQuery UI对话框中进行ajax加载的UL排序?

时间:2013-08-07 15:20:06

标签: javascript jquery jquery-ui jquery-ui-sortable

我需要在后台加载一个UL,然后将它呈现在一个用于排序的对话框中,但我是JQuery / JQuery UI的新手,并且显然遇到了Google问题。就我而言:

$(document).on('click','a.priority', function(){
    // Get the URL of the link
    var href = $(this).attr('href');
    // Tell the page to expect JS instead
    href = href + "/ajax";
    // Get the page content
    $.get(href, function(data){
        // Initialise a dialog for the content
        var my_dialog = $('<div></div>')
            .dialog({
                 autoOpen: false
                ,open: function (event, ui) {
                    // Add the result of the GET (a UL) as the dialog's content
                    my_dialog.html(data);
                    // Make it sortable, how?
                    my_dialog.sortable().disableSelection();
                    // Set the dialog title (this will be dynamic later, and we might need to call a single dialog that gets remangled rather than creating one every time)
                    my_dialog.dialog("option","title","Change priority");
                }
            });
        // Show the dialog
        wsd_dialog.dialog('open');
    });
    // Don't follow the link
    return false;
});

这将获取内容(需要排序的项目的UL)并将其显示在对话框中 - 但UL显示为单个“可排序”元素。

如何让UL可分类的LI子女而不是UL本身?

感觉这是一个愚蠢的问题,我必须在文档中遗漏一些东西。

1 个答案:

答案 0 :(得分:1)

看起来你正在对话框中调用sortable()。您需要在对话框中选择列表项,并在这些项目上调用sortable()

my_dialog.find('ul').sortable();