diff --git a/server/src/main/resources/static/js/.Rhistory b/server/src/main/resources/static/js/.Rhistory new file mode 100644 index 00000000000..e69de29bb2d diff --git a/server/src/main/resources/static/js/SlickGrid-master/.gitignore b/server/src/main/resources/static/js/SlickGrid-master/.gitignore deleted file mode 100755 index d2f89b66646..00000000000 --- a/server/src/main/resources/static/js/SlickGrid-master/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -.gitk* -.idea/* -.DS_Store diff --git a/server/src/main/resources/static/js/SlickGrid-master/MIT-LICENSE.txt b/server/src/main/resources/static/js/SlickGrid-master/MIT-LICENSE.txt deleted file mode 100755 index 60f65425c0d..00000000000 --- a/server/src/main/resources/static/js/SlickGrid-master/MIT-LICENSE.txt +++ /dev/null @@ -1,20 +0,0 @@ -Copyright (c) 2010 Michael Leibman, http://github.com/mleibman/slickgrid - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/server/src/main/resources/static/js/SlickGrid-master/README.md b/server/src/main/resources/static/js/SlickGrid-master/README.md deleted file mode 100755 index 7994a271934..00000000000 --- a/server/src/main/resources/static/js/SlickGrid-master/README.md +++ /dev/null @@ -1,22 +0,0 @@ -# Welcome to SlickGrid - -Find documentation and examples in [the wiki](https://github.com/mleibman/SlickGrid/wiki). - -## SlickGrid is an advanced JavaScript grid/spreadsheet component - -Some highlights: - -* Adaptive virtual scrolling (handle hundreds of thousands of rows with extreme responsiveness) -* Extremely fast rendering speed -* Supports jQuery UI Themes -* Background post-rendering for richer cells -* Configurable & customizable -* Full keyboard navigation -* Column resize/reorder/show/hide -* Column autosizing & force-fit -* Pluggable cell formatters & editors -* Support for editing and creating new rows. -* Grouping, filtering, custom aggregators, and more! -* Advanced detached & multi-field editors with undo/redo support. -* “GlobalEditorLock” to manage concurrent edits in cases where multiple Views on a page can edit the same data. -* Support for [millions of rows](http://stackoverflow.com/a/2569488/1269037) diff --git a/server/src/main/resources/static/js/SlickGrid-master/controls/slick.columnpicker.css b/server/src/main/resources/static/js/SlickGrid-master/controls/slick.columnpicker.css deleted file mode 100755 index bcbb37584c2..00000000000 --- a/server/src/main/resources/static/js/SlickGrid-master/controls/slick.columnpicker.css +++ /dev/null @@ -1,31 +0,0 @@ -.slick-columnpicker { - border: 1px solid #718BB7; - background: #f0f0f0; - padding: 6px; - -moz-box-shadow: 2px 2px 2px silver; - -webkit-box-shadow: 2px 2px 2px silver; - box-shadow: 2px 2px 2px silver; - min-width: 100px; - cursor: default; -} - -.slick-columnpicker li { - list-style: none; - margin: 0; - padding: 0; - background: none; -} - -.slick-columnpicker input { - margin: 4px; -} - -.slick-columnpicker li a { - display: block; - padding: 4px; - font-weight: bold; -} - -.slick-columnpicker li a:hover { - background: white; -} diff --git a/server/src/main/resources/static/js/SlickGrid-master/controls/slick.columnpicker.js b/server/src/main/resources/static/js/SlickGrid-master/controls/slick.columnpicker.js deleted file mode 100755 index be0dc066d30..00000000000 --- a/server/src/main/resources/static/js/SlickGrid-master/controls/slick.columnpicker.js +++ /dev/null @@ -1,145 +0,0 @@ -(function ($) { - function SlickColumnPicker(columns, grid, options) { - var $menu; - var columnCheckboxes; - - var defaults = { - fadeSpeed:250 - }; - - function init() { - grid.onHeaderContextMenu.subscribe(handleHeaderContextMenu); - grid.onColumnsReordered.subscribe(updateColumnOrder); - options = $.extend({}, defaults, options); - - $menu = $("