Aleksander Machniak
2014-07-25 2c0d3e1dd0a3df01c8adea0de5f2826f0bcb9434
program/js/treelist.js
@@ -68,6 +68,8 @@
    tree_state,
    ui_droppable,
    ui_draggable,
    draggable_opts,
    droppable_opts,
    list_id = (container.attr('id') || p.id_prefix || '0'),
    me = this;
@@ -470,7 +472,7 @@
  /**
   *
   */
  function reset()
  function reset(keep_content)
  {
    select('');
@@ -478,7 +480,24 @@
    indexbyid = {};
    drag_active = false;
    container.html('');
    if (keep_content) {
      if (draggable_opts) {
        if (ui_draggable)
          draggable('destroy');
        draggable(draggable_opts);
      }
      if (droppable_opts) {
        if (ui_droppable)
          droppable('destroy');
        droppable(droppable_opts);
      }
      update_data();
    }
    else {
      container.html('');
    }
    reset_search();
  }
@@ -1043,6 +1062,16 @@
  {
    if (!opts) opts = {};
    if ($.type(opts) == 'string') {
      if (opts == 'destroy') {
        ui_droppable = null;
      }
      $('li:not(.virtual)', container).droppable(opts);
      return this;
    }
    droppable_opts = opts;
    var my_opts = $.extend({
        greedy: true,
        tolerance: 'pointer',
@@ -1070,7 +1099,7 @@
        opts.over(e, ui);
    };
    $(selector ? selector : 'li:not(.virtual)', container).droppable(my_opts);
    $('li:not(.virtual)', container).droppable(my_opts);
    return this;
  }
@@ -1084,11 +1113,23 @@
  {
    if (!opts) opts = {};
    if ($.type(opts) == 'string') {
      if (opts == 'destroy') {
        ui_draggable = null;
      }
      $('li:not(.virtual)', container).draggable(opts);
      return this;
    }
    draggable_opts = opts;
    var my_opts = $.extend({
        appendTo: 'body',
        revert: 'invalid',
        iframeFix: true,
        addClasses: false,
        cursorAt: {left: -20, top: 5},
        create: function(e, ui) { ui_draggable = ui; },
        helper: function(e) {
          return $('<div>').attr('id', 'rcmdraglayer')
            .text($.trim($(e.target).first().text()));