diff --git a/module/execution/js/kanban.js b/module/execution/js/kanban.js index 01d6607648..b6c0a7e99a 100644 --- a/module/execution/js/kanban.js +++ b/module/execution/js/kanban.js @@ -1243,7 +1243,8 @@ function initKanban($kanban) onRenderCount: renderCount, droppable: {target: findDropColumns, finish:handleFinishDrop}, virtualize: true, - virtualCardList: true + virtualCardList: true, + virtualRenderOptions: {container: $(window).add($('#kanbanContainer'))} }); $kanban.on('click', '.action-cancel', hideKanbanAction); diff --git a/module/execution/js/taskkanban.js b/module/execution/js/taskkanban.js index bfcf13e916..4873fc94f7 100644 --- a/module/execution/js/taskkanban.js +++ b/module/execution/js/taskkanban.js @@ -1062,7 +1062,7 @@ $(function() cardsPerRow: window.kanbanScaleSize, virtualize: true, onAction: handleKanbanAction, - virtualRenderOptions: {container: '#kanbanContainer>.panel-body'}, + virtualRenderOptions: {container: '#kanbanContainer>.panel-body,#kanbanContainer'}, virtualCardList: true, droppable: { @@ -1071,7 +1071,7 @@ $(function() }, onRenderHeaderCol: renderHeaderCol, onRenderLaneName: renderLaneName, - onRenderCount: renderColumnCount + onRenderCount: renderColumnCount, }; /* Create kanban */ diff --git a/module/execution/view/edit.html.php b/module/execution/view/edit.html.php index 1927c31f9d..0e7c0ffa9c 100644 --- a/module/execution/view/edit.html.php +++ b/module/execution/view/edit.html.php @@ -25,11 +25,15 @@