diff --git a/source/Ox.UI/js/List/Ox.List.js b/source/Ox.UI/js/List/Ox.List.js index 7189cccd..31ec0806 100644 --- a/source/Ox.UI/js/List/Ox.List.js +++ b/source/Ox.UI/js/List/Ox.List.js @@ -333,7 +333,11 @@ Ox.List = function(options, self) { function dragstart(event, e) { var $target = $(e.target), $parent = $target.parent(); - if ($target.is('.OxTarget') || $parent.is('.OxTarget')) { + if ( + $target.is('.OxTarget') // icon lists + || $parent.is('.OxTarget') // text lists + || $parent.parent().is('.OxTarget') // text lists with div inside cell + ) { self.drag = { ids: self.options.selected }